Package io.webfolder.cdp.command
Interface Security
-
public interface Security
Security
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disable()
Disables tracking security state changes.void
enable()
Enables tracking security state changes.void
handleCertificateError(Integer eventId, CertificateErrorAction action)
Handles a certificate error that fired a certificateError event.void
setIgnoreCertificateErrors(Boolean ignore)
Enable/disable whether all certificate errors should be ignored.void
setOverrideCertificateErrors(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 withhandleCertificateError
commands.- Parameters:
override
- If true, certificate errors will be overridden.
-
-