org.apache.subversion.javahl.callback
Class AuthnCallback.SSLServerCertInfo

java.lang.Object
  extended by org.apache.subversion.javahl.callback.AuthnCallback.SSLServerCertInfo
All Implemented Interfaces:
Serializable
Enclosing interface:
AuthnCallback

public static class AuthnCallback.SSLServerCertInfo
extends Object
implements Serializable

Detailed information about the parsed server SSL certificate.

See Also:
Serialized Form

Method Summary
 String getCert()
           
 byte[] getFingerprint()
           
 List<String> getHostnames()
           
 String getIssuer()
           
 String getSubject()
           
 Date getValidFrom()
           
 Date getValidTo()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getSubject

public String getSubject()
Returns:
The subject of the certificate.

getIssuer

public String getIssuer()
Returns:
The certificate issuer.

getValidFrom

public Date getValidFrom()
Returns:
The from which the certificate is valid.

getValidTo

public Date getValidTo()
Returns:
The date after which the certificate is no longer valid.

getFingerprint

public byte[] getFingerprint()
Returns:
The certificate fingerprint.

getHostnames

public List<String> getHostnames()
Returns:
A list of host names that the certificate represents.

getCert

public String getCert()
Returns:
the Base64-encoded raw certificate data.