|
BEA Systems, Inc. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.net.SocketFactory | +--weblogic.security.SSL.SSLSocketFactory
Delegates to SSLSocketFactory requests to create SSL sockets.
Method Summary | |
java.net.Socket |
createSocket(java.net.InetAddress address,
int port)
Returns a socket connected to a ServerSocket at the specified network address and port. |
java.net.Socket |
createSocket(java.net.InetAddress address,
int port,
java.net.InetAddress clientAddress,
int clientPort)
Returns a socket connected to a ServerSocket at the specified network address and port. |
java.net.Socket |
createSocket(java.net.Socket socket,
java.lang.String host,
int port,
boolean autoClose)
Returns a socket layered over an existing socket to a ServerSocket on the named host, at the given port. |
java.net.Socket |
createSocket(java.lang.String host,
int port)
Returns a socket connected to a ServerSocket on the named host, at the given port. |
java.net.Socket |
createSocket(java.lang.String host,
int port,
java.net.InetAddress clientAddress,
int clientPort)
Returns a socket connected to a ServerSocket on the named host, at the given port. |
static javax.net.SocketFactory |
getDefault()
Deprecated. Deprecated in WebLogic Server 7.0. This method returns the legacy SSLSocketFactory so use the getDefaultJSSE() method instead. |
java.lang.String[] |
getDefaultCipherSuites()
Returns the list of cipher suites which are enabled by default. |
static javax.net.SocketFactory |
getDefaultJSSE()
Returns the default SSL socket factory. |
java.lang.String[] |
getSupportedCipherSuites()
Returns the names of the cipher suites which could be enabled for use on an SSL connection. |
Methods inherited from class javax.net.SocketFactory |
createSocket |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Method Detail |
public static javax.net.SocketFactory getDefault()
public static javax.net.SocketFactory getDefaultJSSE()
public java.net.Socket createSocket(java.net.Socket socket, java.lang.String host, int port, boolean autoClose) throws java.net.UnknownHostException, java.io.IOException
socket
- the existing sockethost
- the server hostport
- the server portautoClose
- close the underlying socket when this socket is closedpublic java.net.Socket createSocket(java.lang.String host, int port) throws java.net.UnknownHostException, java.io.IOException
host
- the server hostport
- the server portpublic java.net.Socket createSocket(java.net.InetAddress address, int port) throws java.net.UnknownHostException, java.io.IOException
address
- the server network addressport
- the server portpublic java.net.Socket createSocket(java.lang.String host, int port, java.net.InetAddress clientAddress, int clientPort) throws java.net.UnknownHostException, java.io.IOException
host
- the server hostport
- the server portclientAddress
- the client network addressclientPort
- the client portpublic java.net.Socket createSocket(java.net.InetAddress address, int port, java.net.InetAddress clientAddress, int clientPort) throws java.net.UnknownHostException, java.io.IOException
address
- the server network addressport
- the server portclientAddress
- the client network addressclientPort
- the client portpublic java.lang.String[] getDefaultCipherSuites()
getSupportedCipherSuites()
public java.lang.String[] getSupportedCipherSuites()
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs81b |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |