Serialized Form
-
Package org.apache.commons.httpclient
-
Exception org.apache.commons.httpclient.CircularRedirectException
class CircularRedirectException extends RedirectException implements Serializable -
Exception org.apache.commons.httpclient.ConnectionPoolTimeoutException
class ConnectionPoolTimeoutException extends ConnectTimeoutException implements Serializable -
Exception org.apache.commons.httpclient.ConnectTimeoutException
class ConnectTimeoutException extends InterruptedIOException implements Serializable -
Class org.apache.commons.httpclient.Cookie
class Cookie extends NameValuePair implements Serializable-
Serialized Fields
-
cookieComment
String cookieComment
Comment attribute. -
cookieDomain
String cookieDomain
Domain attribute. -
cookieExpiryDate
Date cookieExpiryDate
ExpirationDate
. -
cookiePath
String cookiePath
Path attribute. -
cookieVersion
int cookieVersion
The version of the cookie specification I was created from. -
hasDomainAttribute
boolean hasDomainAttribute
Specifies if the set-cookie header included a Domain attribute for this cookie -
hasPathAttribute
boolean hasPathAttribute
Specifies if the set-cookie header included a Path attribute for this cookie -
isSecure
boolean isSecure
My secure flag.
-
-
-
Class org.apache.commons.httpclient.Header
class Header extends NameValuePair implements Serializable-
Serialized Fields
-
isAutogenerated
boolean isAutogenerated
Autogenerated header flag.
-
-
-
Class org.apache.commons.httpclient.HeaderElement
class HeaderElement extends NameValuePair implements Serializable-
Serialized Fields
-
parameters
NameValuePair[] parameters
My parameters, if any.
-
-
-
Error org.apache.commons.httpclient.HttpClientError
class HttpClientError extends Error implements Serializable -
Exception org.apache.commons.httpclient.HttpContentTooLargeException
class HttpContentTooLargeException extends HttpException implements Serializable-
Serialized Fields
-
maxlen
int maxlen
-
-
-
Exception org.apache.commons.httpclient.HttpException
class HttpException extends IOException implements Serializable-
Serialized Fields
-
cause
Throwable cause
The original Throwable representing the cause of this error -
reason
String reason
Deprecated.HttpClient no longer uses this field for itself. It is only provided for compatibility with existing clients.A "reason" string provided for compatibility with older clients. -
reasonCode
int reasonCode
Deprecated.HttpClient no longer uses this field for itself. It is only provided for compatibility with existing clients.Reason code for compatibility with older clients.
-
-
-
Exception org.apache.commons.httpclient.HttpRecoverableException
class HttpRecoverableException extends HttpException implements Serializable -
Class org.apache.commons.httpclient.HttpsURL
class HttpsURL extends HttpURL implements Serializable- serialVersionUID:
- 887844277028676648L
-
Class org.apache.commons.httpclient.HttpURL
class HttpURL extends URI implements Serializable- serialVersionUID:
- -7158031098595039459L
-
Exception org.apache.commons.httpclient.InvalidRedirectLocationException
class InvalidRedirectLocationException extends RedirectException implements Serializable-
Serialized Fields
-
location
String location
-
-
-
Class org.apache.commons.httpclient.NameValuePair
class NameValuePair extends Object implements Serializable -
Exception org.apache.commons.httpclient.NoHttpResponseException
class NoHttpResponseException extends IOException implements Serializable -
Exception org.apache.commons.httpclient.ProtocolException
class ProtocolException extends HttpException implements Serializable -
Exception org.apache.commons.httpclient.RedirectException
class RedirectException extends ProtocolException implements Serializable -
Class org.apache.commons.httpclient.URI
class URI extends Object implements Serializable- serialVersionUID:
- 604752400577948726L
-
Serialization Methods
-
readObject
Read a URI.- Parameters:
ois
- the object-input stream- Throws:
ClassNotFoundException
- If one of the classes specified in the input stream cannot be found.IOException
- If an IO problem occurs.
-
writeObject
Write the content of this URI.- Parameters:
oos
- the object-output stream- Throws:
IOException
- If an IO problem occurs.
-
-
Serialized Fields
-
_authority
char[] _authority
The authority. -
_fragment
char[] _fragment
The fragment. -
_host
char[] _host
The host. -
_is_abs_path
boolean _is_abs_path
-
_is_hier_part
boolean _is_hier_part
-
_is_hostname
boolean _is_hostname
-
_is_IPv4address
boolean _is_IPv4address
-
_is_IPv6reference
boolean _is_IPv6reference
-
_is_net_path
boolean _is_net_path
-
_is_opaque_part
boolean _is_opaque_part
-
_is_reg_name
boolean _is_reg_name
-
_is_rel_path
boolean _is_rel_path
-
_is_server
boolean _is_server
-
_opaque
char[] _opaque
The opaque. -
_path
char[] _path
The path. -
_port
int _port
The port. -
_query
char[] _query
The query. -
_scheme
char[] _scheme
The scheme. -
_uri
char[] _uri
This Uniform Resource Identifier (URI). The URI is always in an "escaped" form, since escaping or unescaping a completed URI might change its semantics. -
_userinfo
char[] _userinfo
The userinfo. -
hash
int hash
Cache the hash code for this URI. -
protocolCharset
String protocolCharset
The charset of the protocol used by this URI instance.
-
-
Exception org.apache.commons.httpclient.URI.DefaultCharsetChanged
class DefaultCharsetChanged extends RuntimeException implements Serializable-
Serialized Fields
-
reason
String reason
The reason message. -
reasonCode
int reasonCode
The reason code.
-
-
-
Exception org.apache.commons.httpclient.URIException
class URIException extends HttpException implements Serializable-
Serialized Fields
-
reason
String reason
The reason message. -
reasonCode
int reasonCode
The reason code.
-
-
-
-
Package org.apache.commons.httpclient.auth
-
Exception org.apache.commons.httpclient.auth.AuthChallengeException
class AuthChallengeException extends AuthenticationException implements Serializable -
Exception org.apache.commons.httpclient.auth.AuthenticationException
class AuthenticationException extends ProtocolException implements Serializable -
Exception org.apache.commons.httpclient.auth.CredentialsNotAvailableException
class CredentialsNotAvailableException extends AuthenticationException implements Serializable -
Exception org.apache.commons.httpclient.auth.InvalidCredentialsException
class InvalidCredentialsException extends AuthenticationException implements Serializable -
Exception org.apache.commons.httpclient.auth.MalformedChallengeException
class MalformedChallengeException extends ProtocolException implements Serializable
-
-
Package org.apache.commons.httpclient.cookie
-
Class org.apache.commons.httpclient.cookie.Cookie2
class Cookie2 extends Cookie implements Serializable-
Serialized Fields
-
cookieCommentURL
String cookieCommentURL
Comment URL attribute -
cookiePorts
int[] cookiePorts
Port attribute. -
discard
boolean discard
Discard attribute. -
hasPortAttribute
boolean hasPortAttribute
Indicates if the set-cookie2 header included a Port attribute for this cookie -
hasVersionAttribute
boolean hasVersionAttribute
Indicates if the set-cookie2 header included a Version attribute -
isPortAttributeBlank
boolean isPortAttributeBlank
Indicates if the set-cookie2 header's Port attribute did not have any value.
-
-
-
Exception org.apache.commons.httpclient.cookie.MalformedCookieException
class MalformedCookieException extends ProtocolException implements Serializable
-
-
Package org.apache.commons.httpclient.params
-
Class org.apache.commons.httpclient.params.DefaultHttpParams
class DefaultHttpParams extends Object implements Serializable-
Serialized Fields
-
defaults
HttpParams defaults
The set of default values to defer to -
parameters
HashMap parameters
Hash map of HTTP parameters that this collection contains
-
-
-
Class org.apache.commons.httpclient.params.HostParams
class HostParams extends DefaultHttpParams implements Serializable -
Class org.apache.commons.httpclient.params.HttpClientParams
class HttpClientParams extends HttpMethodParams implements Serializable -
Class org.apache.commons.httpclient.params.HttpConnectionManagerParams
class HttpConnectionManagerParams extends HttpConnectionParams implements Serializable -
Class org.apache.commons.httpclient.params.HttpConnectionParams
class HttpConnectionParams extends DefaultHttpParams implements Serializable -
Class org.apache.commons.httpclient.params.HttpMethodParams
class HttpMethodParams extends DefaultHttpParams implements Serializable
-
-
Package org.apache.commons.httpclient.util
-
Exception org.apache.commons.httpclient.util.DateParseException
class DateParseException extends Exception implements Serializable -
Exception org.apache.commons.httpclient.util.TimeoutController.TimeoutException
class TimeoutException extends Exception implements Serializable -
Class org.apache.commons.httpclient.util.URIUtil.Coder
class Coder extends URI implements Serializable
-