Package io.webfolder.cdp.command
Interface Security
public interface Security
Security
-
Method Summary
Modifier and TypeMethodDescriptionvoid
disable()
Disables tracking security state changes.void
enable()
Enables tracking security state changes.void
handleCertificateError
(Integer eventId, CertificateErrorAction action) Deprecated.void
setIgnoreCertificateErrors
(Boolean ignore) Enable/disable whether all certificate errors should be ignored.void
setOverrideCertificateErrors
(Boolean override) Deprecated.
-
Method Details
-
disable
void disable()Disables tracking security state changes. -
enable
void enable()Enables tracking security state changes. -
handleCertificateError
Deprecated.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.
-
setIgnoreCertificateErrors
Enable/disable whether all certificate errors should be ignored.- Parameters:
ignore
- If true, all certificate errors will be ignored.
-
setOverrideCertificateErrors
Deprecated.Enable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered with handleCertificateError commands.- Parameters:
override
- If true, certificate errors will be overridden.
-