Package com.microsoft.playwright.options
Class SecurityDetails
- java.lang.Object
-
- com.microsoft.playwright.options.SecurityDetails
-
public class SecurityDetails extends Object
-
-
Field Summary
Fields Modifier and Type Field Description StringissuerCommon Name component of the Issuer field.StringprotocolThe specific TLS protocol used.StringsubjectNameCommon Name component of the Subject field from the certificate.DoublevalidFromUnix timestamp (in seconds) specifying when this cert becomes valid.DoublevalidToUnix timestamp (in seconds) specifying when this cert becomes invalid.
-
Constructor Summary
Constructors Constructor Description SecurityDetails()
-
-
-
Field Detail
-
issuer
public String issuer
Common Name component of the Issuer field. from the certificate. This should only be used for informational purposes. Optional.
-
protocol
public String protocol
The specific TLS protocol used. (e.g.TLS 1.3). Optional.
-
subjectName
public String subjectName
Common Name component of the Subject field from the certificate. This should only be used for informational purposes. Optional.
-
validFrom
public Double validFrom
Unix timestamp (in seconds) specifying when this cert becomes valid. Optional.
-
validTo
public Double validTo
Unix timestamp (in seconds) specifying when this cert becomes invalid. Optional.
-
-