All Packages Class Hierarchy This Package Previous Next Index
Class javax.net.ssl.SSLServerSocketFactory
java.lang.Object
|
+----javax.net.ServerSocketFactory
|
+----javax.net.ssl.SSLServerSocketFactory
- public abstract class SSLServerSocketFactory
- extends ServerSocketFactory
This class creates SSL server sockets.
-
SSLServerSocketFactory()
- Constructor is used only by subclasses.
-
getDefault()
- Returns the default SSL server socket factory.
-
getDefaultCipherSuites()
- Returns the list of cipher suites which are enabled by default.
-
getSupportedCipherSuites()
- Returns the names of the cipher suites which could be enabled for use
on an SSL connection created by this factory.
SSLServerSocketFactory
protected SSLServerSocketFactory()
- Constructor is used only by subclasses.
getDefault
public static ServerSocketFactory getDefault()
- Returns the default SSL server socket factory.
getDefaultCipherSuites
public abstract String[] getDefaultCipherSuites()
- Returns the list of cipher suites which are enabled by default.
Unless a different list is enabled, handshaking on an SSL connection
will use one of these cipher suites. The minimum quality of service
for these defaults requires confidentiality protection and server
authentication.
- Returns:
- array of the cipher suites enabled by default
- See Also:
- getSupportedCipherSuites
getSupportedCipherSuites
public abstract String[] getSupportedCipherSuites()
- Returns the names of the cipher suites which could be enabled for use
on an SSL connection created by this factory. Normally, only a subset of these will actually
be enabled by default, since this list may include cipher suites which
do not meet quality of service requirements for those defaults. Such
cipher suites are useful in specialized applications.
- Returns:
- an array of cipher suite names
All Packages Class Hierarchy This Package Previous Next Index