Class SecurityStateChanged
- java.lang.Object
-
- org.openqa.selenium.devtools.security.model.SecurityStateChanged
-
public class SecurityStateChanged extends java.lang.Object
The security state of the page changed.
-
-
Constructor Summary
Constructors Constructor Description SecurityStateChanged(SecurityState securityState, java.lang.Boolean schemeIsCryptographic, java.util.List<SecurityStateExplanation> explanations, InsecureContentStatus insecureContentStatus, java.lang.String summary)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.List<SecurityStateExplanation>
getExplanations()
List of explanations for the security state.InsecureContentStatus
getInsecureContentStatus()
Deprecated.java.lang.Boolean
getSchemeIsCryptographic()
Deprecated.SecurityState
getSecurityState()
Security state.java.lang.String
getSummary()
Overrides user-visible description of the state.
-
-
-
Constructor Detail
-
SecurityStateChanged
public SecurityStateChanged(SecurityState securityState, java.lang.Boolean schemeIsCryptographic, java.util.List<SecurityStateExplanation> explanations, InsecureContentStatus insecureContentStatus, java.lang.String summary)
-
-
Method Detail
-
getSecurityState
public SecurityState getSecurityState()
Security state.
-
getSchemeIsCryptographic
@Deprecated public java.lang.Boolean getSchemeIsCryptographic()
Deprecated.True if the page was loaded over cryptographic transport such as HTTPS.
-
getExplanations
public java.util.List<SecurityStateExplanation> getExplanations()
List of explanations for the security state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included.
-
getInsecureContentStatus
@Deprecated public InsecureContentStatus getInsecureContentStatus()
Deprecated.Information about insecure content on the page.
-
getSummary
public java.lang.String getSummary()
Overrides user-visible description of the state.
-
-