Package io.webfolder.cdp.command
Interface Security
-
public interface SecuritySecurity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddisable()Disables tracking security state changes.voidenable()Enables tracking security state changes.voidhandleCertificateError(Integer eventId, CertificateErrorAction action)Handles a certificate error that fired a certificateError event.voidsetIgnoreCertificateErrors(Boolean ignore)Enable/disable whether all certificate errors should be ignored.voidsetOverrideCertificateErrors(Boolean override)Enable/disable overriding certificate errors.
-
-
-
Method Detail
-
disable
void disable()
Disables tracking security state changes.
-
enable
void enable()
Enables tracking security state changes.
-
setIgnoreCertificateErrors
void setIgnoreCertificateErrors(Boolean ignore)
Enable/disable whether all certificate errors should be ignored.- Parameters:
ignore- If true, all certificate errors will be ignored.
-
handleCertificateError
void handleCertificateError(Integer eventId, CertificateErrorAction action)
Handles a certificate error that fired a certificateError event.- Parameters:
eventId- The ID of the event.action- The action to take on the certificate error.
-
setOverrideCertificateErrors
void setOverrideCertificateErrors(Boolean override)
Enable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered withhandleCertificateErrorcommands.- Parameters:
override- If true, certificate errors will be overridden.
-
-