Class SignedExchangeInfo
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.SignedExchangeInfo
-
public class SignedExchangeInfo extends java.lang.Object
Information about a signed exchange response
-
-
Constructor Summary
Constructors Constructor Description SignedExchangeInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<SignedExchangeError>
getErrors()
Errors occurred while handling the signed exchagne.SignedExchangeHeader
getHeader()
Information about the signed exchange header.Response
getOuterResponse()
The outer response of signed HTTP exchange which was received from network.SecurityDetails
getSecurityDetails()
Security details for the signed exchange header.void
setErrors(java.util.List<SignedExchangeError> errors)
Errors occurred while handling the signed exchagne.void
setHeader(SignedExchangeHeader header)
Information about the signed exchange header.void
setOuterResponse(Response outerResponse)
The outer response of signed HTTP exchange which was received from network.void
setSecurityDetails(SecurityDetails securityDetails)
Security details for the signed exchange header.
-
-
-
Method Detail
-
getOuterResponse
public Response getOuterResponse()
The outer response of signed HTTP exchange which was received from network.
-
setOuterResponse
public void setOuterResponse(Response outerResponse)
The outer response of signed HTTP exchange which was received from network.
-
getHeader
public SignedExchangeHeader getHeader()
Information about the signed exchange header.
-
setHeader
public void setHeader(SignedExchangeHeader header)
Information about the signed exchange header.
-
getSecurityDetails
public SecurityDetails getSecurityDetails()
Security details for the signed exchange header.
-
setSecurityDetails
public void setSecurityDetails(SecurityDetails securityDetails)
Security details for the signed exchange header.
-
getErrors
public java.util.List<SignedExchangeError> getErrors()
Errors occurred while handling the signed exchagne.
-
setErrors
public void setErrors(java.util.List<SignedExchangeError> errors)
Errors occurred while handling the signed exchagne.
-
-