|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.net.SocketFactory | +--javax.net.ssl.SSLSocketFactory
Instances of this kind of socket factory return SSL sockets. An SSL implementation may be established as the "default" factory.
Factory classes are specified by virtual machine configuration mechanisms. Policies for providing different kinds of socket, and for customizing how they are configured, are similarly specified using virtual machine specific interfaces.
Constructor Summary | |
SSLSocketFactory()
Constructor is used only by subclasses. |
Method Summary | |
abstract Socket |
createSocket(Socket s,
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. |
static SocketFactory |
getDefault()
Returns the default SSL socket factory. |
abstract String[] |
getDefaultCipherSuites()
Returns the list of cipher suites which are enabled by default. |
abstract String[] |
getSupportedCipherSuites()
Returns the names of the cipher suites which could be enabled for use on an SSL connection created by this factory. |
Methods inherited from class javax.net.SocketFactory |
createSocket,
createSocket,
createSocket,
createSocket |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public SSLSocketFactory()
Method Detail |
public abstract Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException
public static SocketFactory getDefault()
If SSL has not been configured properly for this virtual machine, the factory will be inoperative (reporting instantiation exceptions).
public abstract String[] getDefaultCipherSuites()
public abstract String[] getSupportedCipherSuites()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |