public interface SSLSupport
| Modifier and Type | Interface and Description | 
|---|---|
| static class  | SSLSupport.CipherDataSimple data class that represents the cipher being used, along with the
corresponding effective key size. | 
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | CERTIFICATE_KEYThe Request attribute key for the client certificate chain. | 
| static java.lang.String | CIPHER_SUITE_KEYThe Request attribute key for the cipher suite. | 
| static SSLSupport.CipherData[] | ciphersA mapping table to determine the number of effective bits in the key
when using a cipher suite containing the specified cipher name. | 
| static java.lang.String | KEY_SIZE_KEYThe Request attribute key for the key size. | 
| static java.lang.String | PROTOCOL_VERSION_KEYThe request attribute key under which the String indicating the protocol
that created the SSL socket is recorded - e.g. | 
| static java.lang.String | SESSION_ID_KEYThe Request attribute key for the session id. | 
| static java.lang.String | SESSION_MGRThe request attribute key for the session manager. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getCipherSuite()The cipher suite being used on this connection. | 
| java.lang.Integer | getKeySize()Get the keysize. | 
| java.lang.Object[] | getPeerCertificateChain()The client certificate chain (if any). | 
| java.lang.Object[] | getPeerCertificateChain(boolean force)The client certificate chain (if any). | 
| java.lang.String | getProtocol() | 
| java.lang.String | getSessionId()The current session Id. | 
static final java.lang.String CIPHER_SUITE_KEY
static final java.lang.String KEY_SIZE_KEY
static final java.lang.String CERTIFICATE_KEY
static final java.lang.String SESSION_ID_KEY
static final java.lang.String SESSION_MGR
static final java.lang.String PROTOCOL_VERSION_KEY
static final SSLSupport.CipherData[] ciphers
java.lang.String getCipherSuite()
                                throws java.io.IOException
java.io.IOExceptionjava.lang.Object[] getPeerCertificateChain()
                                           throws java.io.IOException
java.io.IOExceptionjava.lang.Object[] getPeerCertificateChain(boolean force)
                                           throws java.io.IOException
force - If true, then re-negotiate the
connection if necessary.java.io.IOExceptionjava.lang.Integer getKeySize()
                             throws java.io.IOException
java.io.IOExceptionjava.lang.String getSessionId()
                              throws java.io.IOException
java.io.IOExceptionjava.lang.String getProtocol()
                             throws java.io.IOException
java.io.IOExceptionCopyright © 2000-2015 Apache Software Foundation. All Rights Reserved.