| java.lang.Object org.skunk.dav.client.DAVConnectionPool
DAVConnectionPool | abstract public class DAVConnectionPool (Code) | | a pool for DAVConnection objects.
author: Jacob Smullyan |
canSupportSSL | final public static boolean canSupportSSL()(Code) | | indicates at runtime whether the current build can support SSL
whether SSL is supported |
getDAVConnection | public static DAVConnection getDAVConnection(String host, int port, boolean secure)(Code) | | returns a pooled DAVConnection instance
Parameters: host - the host Parameters: port - the port Parameters: secure - whether the protocol of the connection is https (otherwise, http) the pooled DAVConnection instance |
getDAVConnection | public static DAVConnection getDAVConnection(String host, int port)(Code) | | returns a pooled DAVConnection instance with the http protocol
Parameters: host - the host Parameters: port - the port the pooled DAVConnection instance |
getKey | protected static String getKey(String host, int port)(Code) | | returns the key used in the DAVConnectionPool hashtable for a DAVConnection with the given host and port.
Parameters: host - the host Parameters: port - the port the key used |
removeDAVConnection | public static void removeDAVConnection(String host, int port)(Code) | | removes the DAVConnection with the given host and port from the pool
Parameters: host - the host Parameters: port - the port |
|
|