Package com.microsoft.playwright.options
Class SecurityDetails
- java.lang.Object
-
- com.microsoft.playwright.options.SecurityDetails
-
public class SecurityDetails extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringissuerCommon Name component of the Issuer field.java.lang.StringprotocolThe specific TLS protocol used.java.lang.StringsubjectNameCommon Name component of the Subject field from the certificate.java.lang.DoublevalidFromUnix timestamp (in seconds) specifying when this cert becomes valid.java.lang.DoublevalidToUnix timestamp (in seconds) specifying when this cert becomes invalid.
-
Constructor Summary
Constructors Constructor Description SecurityDetails()
-
-
-
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.
-
-