Package io.webfolder.cdp.event.security
Class CertificateError
- java.lang.Object
-
- io.webfolder.cdp.event.security.CertificateError
-
public class CertificateError extends Object
There is a certificate error If overriding certificate errors is enabled, then it should be handled with thehandleCertificateError
command Note: this event does not fire if the certificate error has been allowed internally Only one client per target should override certificate errors at the same time
-
-
Constructor Summary
Constructors Constructor Description CertificateError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorType()
The type of the error.Integer
getEventId()
The ID of the event.String
getRequestURL()
The url that was requested.void
setErrorType(String errorType)
The type of the error.void
setEventId(Integer eventId)
The ID of the event.void
setRequestURL(String requestURL)
The url that was requested.
-
-
-
Method Detail
-
getEventId
public Integer getEventId()
The ID of the event.
-
setEventId
public void setEventId(Integer eventId)
The ID of the event.
-
getErrorType
public String getErrorType()
The type of the error.
-
setErrorType
public void setErrorType(String errorType)
The type of the error.
-
getRequestURL
public String getRequestURL()
The url that was requested.
-
setRequestURL
public void setRequestURL(String requestURL)
The url that was requested.
-
-