|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SSLSupport
Defines an interface to interact with SSL sessions.
Nested Class Summary | |
---|---|
static class |
SSLSupport.CipherData
Simple data class that represents the cipher being used, along with the corresponding effective key size. |
Field Summary | |
---|---|
static String |
CERTIFICATE_KEY
The Request attribute key for the client certificate chain. |
static String |
CIPHER_SUITE_KEY
The Request attribute key for the cipher suite. |
static SSLSupport.CipherData[] |
ciphers
A mapping table to determine the number of effective bits in the key when using a cipher suite containing the specified cipher name. |
static String |
KEY_SIZE_KEY
The Request attribute key for the key size. |
static String |
SESSION_ID_KEY
The Request attribute key for the session id. |
static String |
SESSION_MGR
The request attribute key for the session manager. |
Method Summary | |
---|---|
String |
getCipherSuite()
The cipher suite being used on this connection. |
Integer |
getKeySize()
Get the keysize. |
Object[] |
getPeerCertificateChain()
The client certificate chain (if any). |
Object[] |
getPeerCertificateChain(boolean force)
The client certificate chain (if any). |
String |
getSessionId()
The current session Id. |
Field Detail |
---|
static final String CIPHER_SUITE_KEY
static final String KEY_SIZE_KEY
static final String CERTIFICATE_KEY
static final String SESSION_ID_KEY
static final String SESSION_MGR
static final SSLSupport.CipherData[] ciphers
Method Detail |
---|
String getCipherSuite() throws IOException
IOException
Object[] getPeerCertificateChain() throws IOException
IOException
Object[] getPeerCertificateChain(boolean force) throws IOException
force
- If true
, then re-negotiate the
connection if necessary.
IOException
Integer getKeySize() throws IOException
IOException
String getSessionId() throws IOException
IOException
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |