Package ch.qos.logback.core.net.ssl
Class SSLConfigurableServerSocket
java.lang.Object
ch.qos.logback.core.net.ssl.SSLConfigurableServerSocket
- All Implemented Interfaces:
SSLConfigurable
@Deprecated(since="2022-01-27")
public class SSLConfigurableServerSocket
extends Object
implements SSLConfigurable
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
An
SSLConfigurable
wrapper for an SSLServerSocket
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionString[]
Deprecated.Gets the set of cipher suites that the SSL component enables by default.String[]
Deprecated.Gets the set of protocols that the SSL component enables by default.String[]
Deprecated.Gets the set of cipher suites that the SSL component supports.String[]
Deprecated.Gets the set of protocols that the SSL component supports.void
setEnabledCipherSuites
(String[] suites) Deprecated.Sets the enabled cipher suites on the SSL component.void
setEnabledProtocols
(String[] protocols) Deprecated.Sets the enabled protocols on the SSL component.void
setHostnameVerification
(boolean verifyHostname) Deprecated.void
setNeedClientAuth
(boolean state) Deprecated.Sets a flag indicating whether the SSL component should require client authentication.void
setWantClientAuth
(boolean state) Deprecated.Sets a flag indicating whether the SSL component should request client authentication.
-
Constructor Details
-
SSLConfigurableServerSocket
Deprecated.
-
-
Method Details
-
getDefaultProtocols
Deprecated.Description copied from interface:SSLConfigurable
Gets the set of protocols that the SSL component enables by default.- Specified by:
getDefaultProtocols
in interfaceSSLConfigurable
- Returns:
- protocols (generally a subset of the set returned by
SSLConfigurable.getSupportedProtocols()
); the return value may be an empty array but must never benull
.
-
getSupportedProtocols
Deprecated.Description copied from interface:SSLConfigurable
Gets the set of protocols that the SSL component supports.- Specified by:
getSupportedProtocols
in interfaceSSLConfigurable
- Returns:
- protocols supported protocols; the return value may be
an empty array but must never be
null
.
-
setEnabledProtocols
Deprecated.Description copied from interface:SSLConfigurable
Sets the enabled protocols on the SSL component.- Specified by:
setEnabledProtocols
in interfaceSSLConfigurable
-
getDefaultCipherSuites
Deprecated.Description copied from interface:SSLConfigurable
Gets the set of cipher suites that the SSL component enables by default.- Specified by:
getDefaultCipherSuites
in interfaceSSLConfigurable
- Returns:
- cipher suites (generally a subset of the set returned by
SSLConfigurable.getSupportedCipherSuites()
); the return value may be an empty array but must never benull
-
getSupportedCipherSuites
Deprecated.Description copied from interface:SSLConfigurable
Gets the set of cipher suites that the SSL component supports.- Specified by:
getSupportedCipherSuites
in interfaceSSLConfigurable
- Returns:
- supported cipher suites; the return value may be
an empty array but must never be
null
-
setEnabledCipherSuites
Deprecated.Description copied from interface:SSLConfigurable
Sets the enabled cipher suites on the SSL component.- Specified by:
setEnabledCipherSuites
in interfaceSSLConfigurable
- Parameters:
suites
- the cipher suites to enable
-
setNeedClientAuth
public void setNeedClientAuth(boolean state) Deprecated.Description copied from interface:SSLConfigurable
Sets a flag indicating whether the SSL component should require client authentication.- Specified by:
setNeedClientAuth
in interfaceSSLConfigurable
- Parameters:
state
- the flag state to set
-
setWantClientAuth
public void setWantClientAuth(boolean state) Deprecated.Description copied from interface:SSLConfigurable
Sets a flag indicating whether the SSL component should request client authentication.- Specified by:
setWantClientAuth
in interfaceSSLConfigurable
- Parameters:
state
- the flag state to set
-
setHostnameVerification
public void setHostnameVerification(boolean verifyHostname) Deprecated.- Specified by:
setHostnameVerification
in interfaceSSLConfigurable
-