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 Summary
Modifier and Type Method Description String
getCert()
byte[]
getFingerprint()
List<String>
getHostnames()
String
getIssuer()
String
getSubject()
Date
getValidFrom()
Date
getValidTo()
-
Method Details
-
getSubject
- Returns:
- The subject of the certificate.
-
getIssuer
- Returns:
- The certificate issuer.
-
getValidFrom
- Returns:
- The from which the certificate is valid.
-
getValidTo
- Returns:
- The date after which the certificate is no longer valid.
-
getFingerprint
public byte[] getFingerprint()- Returns:
- The certificate fingerprint.
-
getHostnames
- Returns:
- A list of host names that the certificate represents.
-
getCert
- Returns:
- the Base64-encoded raw certificate data.
-