Class SecurityDetails


  • public class SecurityDetails
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String issuer
      Common Name component of the Issuer field.
      java.lang.String protocol
      The specific TLS protocol used.
      java.lang.String subjectName
      Common Name component of the Subject field from the certificate.
      java.lang.Double validFrom
      Unix timestamp (in seconds) specifying when this cert becomes valid.
      java.lang.Double validTo
      Unix timestamp (in seconds) specifying when this cert becomes invalid.
    • Constructor Summary

      Constructors 
      Constructor Description
      SecurityDetails()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • issuer

        public java.lang.String issuer
        Common Name component of the Issuer field. from the certificate. This should only be used for informational purposes. Optional.
      • protocol

        public java.lang.String protocol
        The specific TLS protocol used. (e.g. TLS 1.3). Optional.
      • subjectName

        public java.lang.String subjectName
        Common Name component of the Subject field from the certificate. This should only be used for informational purposes. Optional.
      • validFrom

        public java.lang.Double validFrom
        Unix timestamp (in seconds) specifying when this cert becomes valid. Optional.
      • validTo

        public java.lang.Double validTo
        Unix timestamp (in seconds) specifying when this cert becomes invalid. Optional.
    • Constructor Detail

      • SecurityDetails

        public SecurityDetails()