Package org.wildfly.security.ssl
Class AbstractDelegatingSSLServerSocketFactory
- java.lang.Object
-
- javax.net.ServerSocketFactory
-
- javax.net.ssl.SSLServerSocketFactory
-
- org.wildfly.security.ssl.AbstractDelegatingSSLServerSocketFactory
-
- Direct Known Subclasses:
ConfiguredSSLServerSocketFactory
abstract class AbstractDelegatingSSLServerSocketFactory extends SSLServerSocketFactory
- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private SSLServerSocketFactorydelegate
-
Constructor Summary
Constructors Constructor Description AbstractDelegatingSSLServerSocketFactory(SSLServerSocketFactory delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerSocketcreateServerSocket()ServerSocketcreateServerSocket(int port)ServerSocketcreateServerSocket(int port, int backlog)ServerSocketcreateServerSocket(int port, int backlog, InetAddress ifAddress)String[]getDefaultCipherSuites()String[]getSupportedCipherSuites()-
Methods inherited from class javax.net.ssl.SSLServerSocketFactory
getDefault
-
-
-
-
Field Detail
-
delegate
private final SSLServerSocketFactory delegate
-
-
Constructor Detail
-
AbstractDelegatingSSLServerSocketFactory
AbstractDelegatingSSLServerSocketFactory(SSLServerSocketFactory delegate)
-
-
Method Detail
-
getDefaultCipherSuites
public String[] getDefaultCipherSuites()
- Specified by:
getDefaultCipherSuitesin classSSLServerSocketFactory
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuitesin classSSLServerSocketFactory
-
createServerSocket
public ServerSocket createServerSocket() throws IOException
- Overrides:
createServerSocketin classServerSocketFactory- Throws:
IOException
-
createServerSocket
public ServerSocket createServerSocket(int port) throws IOException
- Specified by:
createServerSocketin classServerSocketFactory- Throws:
IOException
-
createServerSocket
public ServerSocket createServerSocket(int port, int backlog) throws IOException
- Specified by:
createServerSocketin classServerSocketFactory- Throws:
IOException
-
createServerSocket
public ServerSocket createServerSocket(int port, int backlog, InetAddress ifAddress) throws IOException
- Specified by:
createServerSocketin classServerSocketFactory- Throws:
IOException
-
-