| |
|
| org.apache.catalina.connector.HttpRequestBase org.apache.catalina.connector.http10.HttpRequestImpl
HttpRequestImpl | final class HttpRequestImpl extends HttpRequestBase (Code) | | Implementation of HttpRequest specific to the HTTP connector.
author: Craig R. McClanahan version: $Revision: 1.5 $ $Date: 2002/03/18 07:15:40 $ |
Field Summary | |
protected InetAddress | inet The InetAddress of the remote client of ths request. | final protected static String | info Descriptive information about this Request implementation. |
Method Summary | |
InetAddress | getInet() [Package Private] Return the InetAddress of the remote client of
this request. | public String | getInfo() Return descriptive information about this Request implementation and
the corresponding version number, in the format
<description>/<version> . | public String | getRemoteAddr() Return the Internet Protocol (IP) address of the client that sent
this request. | public String | getRemoteHost() Return the fully qualified name of the client that sent this request,
or the IP address of the client if the name cannot be determined. | public void | recycle() Release all object references, and initialize instance variables, in
preparation for reuse of this object. | void | setInet(InetAddress inet) [Package Private] Set the InetAddress of the remote client of
this request. |
inet | protected InetAddress inet(Code) | | The InetAddress of the remote client of ths request.
|
info | final protected static String info(Code) | | Descriptive information about this Request implementation.
|
getInet | InetAddress getInet()(Code) | | [Package Private] Return the InetAddress of the remote client of
this request.
|
getInfo | public String getInfo()(Code) | | Return descriptive information about this Request implementation and
the corresponding version number, in the format
<description>/<version> .
|
getRemoteAddr | public String getRemoteAddr()(Code) | | Return the Internet Protocol (IP) address of the client that sent
this request.
|
getRemoteHost | public String getRemoteHost()(Code) | | Return the fully qualified name of the client that sent this request,
or the IP address of the client if the name cannot be determined.
|
recycle | public void recycle()(Code) | | Release all object references, and initialize instance variables, in
preparation for reuse of this object.
|
setInet | void setInet(InetAddress inet)(Code) | | [Package Private] Set the InetAddress of the remote client of
this request.
Parameters: inet - The new InetAddress |
|
|
|