|
||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Protocol in org.apache.commons.httpclient |
Methods in org.apache.commons.httpclient that return Protocol | |
Protocol |
HostConfiguration.getProtocol()
Returns the protocol. |
Protocol |
HttpConnection.getProtocol()
Returns the protocol used to establish the connection. |
Methods in org.apache.commons.httpclient with parameters of type Protocol | |
void |
HostConfiguration.setHost(java.lang.String host,
java.lang.String virtualHost,
int port,
Protocol protocol)
Sets the given host, virtual host, port and protocol. |
void |
HostConfiguration.setHost(java.lang.String host,
int port,
Protocol protocol)
Sets the given host, port and protocol. |
void |
HttpConnection.setProtocol(Protocol protocol)
Sets the protocol used to establish the connection |
Constructors in org.apache.commons.httpclient with parameters of type Protocol | |
HttpConnection.HttpConnection(java.lang.String host,
int port,
Protocol protocol)
Creates a new HTTP connection for the given host and port using the given protocol. |
|
HttpConnection.HttpConnection(java.lang.String host,
java.lang.String virtualHost,
int port,
Protocol protocol)
Creates a new HTTP connection for the given host with the virtual alias and port using given protocol. |
|
HttpConnection.HttpConnection(java.lang.String proxyHost,
int proxyPort,
java.lang.String host,
java.lang.String virtualHost,
int port,
Protocol protocol)
Creates a new HTTP connection for the given host with the virtual alias and port via the given proxy host and port using the given protocol. |
Uses of Protocol in org.apache.commons.httpclient.protocol |
Methods in org.apache.commons.httpclient.protocol that return Protocol | |
static Protocol |
Protocol.getProtocol(java.lang.String id)
Gets the protocol with the given ID. |
Methods in org.apache.commons.httpclient.protocol with parameters of type Protocol | |
static void |
Protocol.registerProtocol(java.lang.String id,
Protocol protocol)
Registers a new protocol with the given identifier. |
|
||||||||
PREV NEXT | FRAMES NO FRAMES |