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