|
Apache CXF API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.cxf.transport.http.URLConnectionInfo org.apache.cxf.transport.http.HttpURLConnectionInfo org.apache.cxf.transport.https.HttpsURLConnectionInfo
public class HttpsURLConnectionInfo
This class holds information about the HttpsURLConnection. This class should be used when the getURL().getProtocol() is "https".
Field Summary | |
---|---|
protected String |
enabledCipherSuite
This field contains the cipherSuite enabled in the HTTPS URLconnection. |
protected Certificate[] |
localCertificates
This field contains the certificates that were used to authenticate the connection to the peer. |
protected Principal |
localPrincipal
This field contains the Principal that authenticated to the peer. |
protected Principal |
peerPrincipal
This field contains the Principal that represents the authenticated peer. |
protected Certificate[] |
serverCertificates
This field contains the certificates the server presented to authenticate. |
Fields inherited from class org.apache.cxf.transport.http.URLConnectionInfo |
---|
theURI |
Constructor Summary | |
---|---|
HttpsURLConnectionInfo(HttpURLConnection connection)
This constructor is used to create the info object representing the this HttpsURLConnection. |
|
HttpsURLConnectionInfo(URI uri,
String method,
String cipherSuite,
Certificate[] localCerts,
Principal principal,
Certificate[] serverCerts,
Principal peer)
|
Method Summary | |
---|---|
String |
getEnabledCipherSuite()
This method returns the cipher suite employed in this HttpsURLConnection. |
Certificate[] |
getLocalCertificates()
This method returns the certificates that were used to authenticate to the peer. |
Principal |
getLocalPrincipal()
This method returns the Princpal that authenticated to the peer. |
Principal |
getPeerPrincipal()
This method returns the Principal that represents the authenticated peer. |
Certificate[] |
getServerCertificates()
This method returns the certificates presented by the peer for authentication. |
Methods inherited from class org.apache.cxf.transport.http.HttpURLConnectionInfo |
---|
getHttpRequestMethod |
Methods inherited from class org.apache.cxf.transport.http.URLConnectionInfo |
---|
getURI |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected String enabledCipherSuite
protected Certificate[] localCertificates
protected Principal localPrincipal
protected Certificate[] serverCertificates
protected Principal peerPrincipal
Constructor Detail |
---|
public HttpsURLConnectionInfo(URI uri, String method, String cipherSuite, Certificate[] localCerts, Principal principal, Certificate[] serverCerts, Principal peer)
public HttpsURLConnectionInfo(HttpURLConnection connection) throws IOException
IOException
Method Detail |
---|
public String getEnabledCipherSuite()
public Certificate[] getLocalCertificates()
public Principal getLocalPrincipal()
public Certificate[] getServerCertificates()
public Principal getPeerPrincipal()
|
Apache CXF API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |