Class AuthnCallback.SSLServerCertInfo

java.lang.Object
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 Details

    • 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.