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 String
issuer
Common Name component of the Issuer field. from the certificate.String
protocol
The specific TLS protocol used.String
subjectName
Common Name component of the Subject field from the certificate.Double
validFrom
Unix timestamp (in seconds) specifying when this cert becomes valid.Double
validTo
Unix 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.
-
-