| java.lang.Object com.sun.portal.rproxy.connectionhandler.SSLCachedSSLSocketFactory
SSLCachedSSLSocketFactory | public class SSLCachedSSLSocketFactory (Code) | | This class defines a factory used to create CachedSockets. The types of
Sockets that it can create are defined in a configuration file called
CachedSocketFactory.config.
author: Kevin Hartig |
getCachedSocket | public static CachedSocket getCachedSocket(String host, int port, String socketType, Integer logId)(Code) | | Get a CachedSocket with a Socket of appropriate type. The CachedSocket
returned could be a newly created one or one already in the socket cache
ready for reuse.
Parameters: host - the host address the client socket attaches to (d%.d%.d%.d%format) Parameters: port - the port number to bind to the Socket Parameters: socketType - the type of socket to create inside the CachedSocket a CachedSocket bound to the designated host:port and containing aSocket of the requested type. This value is null if socketcreation failed. |
getNewCachedSocket | public static CachedSocket getNewCachedSocket(String host, int port, String socketType, Integer logId)(Code) | | Get a CachedSocket with a Socket of appropriate type. The CachedSocket
returned could be a newly created one or one already in the socket cache
ready for reuse.
Parameters: host - the host address the client socket attaches to (d%.d%.d%.d%format) Parameters: port - the port number to bind to the Socket Parameters: socketType - the type of socket to create inside the CachedSocket a CachedSocket bound to the designated host:port and containing aSocket of the requested type. This value is null if socketcreation failed. |
|
|