Class AwSSLCertificate

    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.