Methods Summary |
---|
public java.lang.String[] | getEnabledCipherSuites()Returns the list of cipher suites to be enabled when {@link SSLEngine}
is initialized.
|
public java.lang.String[] | getEnabledProtocols()Returns the list of protocols to be enabled when {@link SSLEngine}
is initialized.
|
public org.apache.tomcat.util.net.ServerSocketFactory | getServerSocketFactory()Return the ServerSocketFactory used when a blocking IO
is enabled.
|
public boolean | isClientMode()Returns true if the SSlEngine is set to use client mode
when handshaking.
|
public boolean | isNeedClientAuth()Returns true if the SSLEngine will require
client authentication.
|
public boolean | isWantClientAuth()Returns true if the engine will request client
authentication.
|
public void | setClientMode(boolean clientMode)Configures the engine to use client (or server) mode when handshaking.
|
public void | setEnabledCipherSuites(java.lang.String[] enabledCipherSuites)Sets the list of cipher suites to be enabled when {@link SSLEngine}
is initialized.
|
public void | setEnabledProtocols(java.lang.String[] enabledProtocols)Sets the list of protocols to be enabled when {@link SSLEngine}
is initialized.
|
public void | setNeedClientAuth(boolean needClientAuth)Configures the engine to require client authentication.
|
public void | setSSLImplementation(E sslImplementation)
|
public void | setServerSocketFactory(org.apache.tomcat.util.net.ServerSocketFactory factory)Set the ServerSocketFactory used when a blocking IO
is enabled.
|
public void | setWantClientAuth(boolean wantClientAuth)Configures the engine to request client authentication.
|