Package io.webfolder.cdp.event.security
Class SecurityStateChanged
- java.lang.Object
-
- io.webfolder.cdp.event.security.SecurityStateChanged
-
public class SecurityStateChanged extends java.lang.Object
The security state of the page changed
-
-
Constructor Summary
Constructors Constructor Description SecurityStateChanged()
-
Method Summary
Modifier and Type Method Description java.util.List<SecurityStateExplanation>
getExplanations()
List of explanations for the security state.InsecureContentStatus
getInsecureContentStatus()
Information about insecure content on the page.SecurityState
getSecurityState()
Security state.java.lang.String
getSummary()
Overrides user-visible description of the state.java.lang.Boolean
isSchemeIsCryptographic()
True if the page was loaded over cryptographic transport such as HTTPS.void
setExplanations(java.util.List<SecurityStateExplanation> explanations)
List of explanations for the security state.void
setInsecureContentStatus(InsecureContentStatus insecureContentStatus)
Information about insecure content on the page.void
setSchemeIsCryptographic(java.lang.Boolean schemeIsCryptographic)
True if the page was loaded over cryptographic transport such as HTTPS.void
setSecurityState(SecurityState securityState)
Security state.void
setSummary(java.lang.String summary)
Overrides user-visible description of the state.
-
-
-
Method Detail
-
getSecurityState
public SecurityState getSecurityState()
Security state.
-
setSecurityState
public void setSecurityState(SecurityState securityState)
Security state.
-
isSchemeIsCryptographic
public java.lang.Boolean isSchemeIsCryptographic()
True if the page was loaded over cryptographic transport such as HTTPS.
-
setSchemeIsCryptographic
public void setSchemeIsCryptographic(java.lang.Boolean schemeIsCryptographic)
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 isinsecure
orwarning
, at least one corresponding explanation should be included.
-
setExplanations
public void setExplanations(java.util.List<SecurityStateExplanation> explanations)
List of explanations for the security state. If the overall security state isinsecure
orwarning
, at least one corresponding explanation should be included.
-
getInsecureContentStatus
public InsecureContentStatus getInsecureContentStatus()
Information about insecure content on the page.
-
setInsecureContentStatus
public void setInsecureContentStatus(InsecureContentStatus insecureContentStatus)
Information about insecure content on the page.
-
getSummary
public java.lang.String getSummary()
Overrides user-visible description of the state.
-
setSummary
public void setSummary(java.lang.String summary)
Overrides user-visible description of the state.
-
-