public class TLSSessionInfo extends Object
| Constructor and Description | 
|---|
| TLSSessionInfo(String suite)This constructor has the effect of calling
 TLSSessionInfo(null, suite) | 
| TLSSessionInfo(String suite,
              SSLSession session,
              Certificate[] certs) | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getChipherSuite()Deprecated.  | 
| String | getCipherSuite() | 
| Certificate[] | getPeerCertificates() | 
| SSLSession | getSSLSession() | 
public TLSSessionInfo(String suite)
public TLSSessionInfo(String suite, SSLSession session, Certificate[] certs)
suite - The negotiated cipher suite
              This parameter may not be null, by contractsession - The JSSE representation of the SSL Session
              negotiated with the peer (optionally null, if
              it is unavailable)certs - the peer X.509 certificate chain (optionally null)@Deprecated public final String getChipherSuite()
public final String getCipherSuite()
public final Certificate[] getPeerCertificates()
public final SSLSession getSSLSession()
Apache CXF