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.


Constructor Index

 o SSLServerSocketFactory()
Constructor is used only by subclasses.

Method Index

 o getDefault()
Returns the default SSL server socket factory.
 o getDefaultCipherSuites()
Returns the list of cipher suites which are enabled by default.
 o getSupportedCipherSuites()
Returns the names of the cipher suites which could be enabled for use on an SSL connection created by this factory.

Constructors

 o SSLServerSocketFactory
 protected SSLServerSocketFactory()
Constructor is used only by subclasses.

Methods

 o getDefault
 public static ServerSocketFactory getDefault()
Returns the default SSL server socket factory.

 o 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
 o 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