Package com.webmethods.jms.ssl
Class AwSSLCertificate
- java.lang.Object
-
- com.webmethods.jms.ssl.AwSSLCertificate
-
public class AwSSLCertificate extends java.lang.Object
Contains the informational fields of the certificate, such as the Distinguished Names of the certified user and of the issuer, the status of the certificate, and the begin- and end-dates of the certificate.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getBeginDate()
Returns the first date on which the certificate is valid.long
getEndDate()
Returns the last date on which the certificate is valid.java.lang.String
getIssuerDn()
Returns the DN of the certificate issueing organization.java.lang.String
getSerial()
Returns the serial of the certificate.java.lang.String
getServerDn()
Returns the DN of the authenticated server.java.lang.String
getStatus()
Returns the status of the certificate.
-
-
-
Method Detail
-
getServerDn
public java.lang.String getServerDn()
Returns the DN of the authenticated server.- Returns:
- a String holding the DN of the server.
-
getIssuerDn
public java.lang.String getIssuerDn()
Returns the DN of the certificate issueing organization.- Returns:
- a String holding the DN of the certificate issuer.
-
getStatus
public java.lang.String getStatus()
Returns the status of the certificate.- Returns:
- a String describing the status of the certificate.
-
getSerial
public java.lang.String getSerial()
Returns the serial of the certificate.- Returns:
- a String describing the serial of the certificate.
-
getBeginDate
public long getBeginDate()
Returns the first date on which the certificate is valid.- Returns:
- a long value specifying the starting date of the certificate in seconds since epoch.
-
getEndDate
public long getEndDate()
Returns the last date on which the certificate is valid.- Returns:
- a long value specifying the ending date of the certificate in seconds since epoch.
-
-