Class SignedExchangeInfo
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.SignedExchangeInfo
-
public class SignedExchangeInfo extends java.lang.ObjectInformation 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.SignedExchangeHeadergetHeader()Information about the signed exchange header.ResponsegetOuterResponse()The outer response of signed HTTP exchange which was received from network.SecurityDetailsgetSecurityDetails()Security details for the signed exchange header.voidsetErrors(java.util.List<SignedExchangeError> errors)Errors occurred while handling the signed exchagne.voidsetHeader(SignedExchangeHeader header)Information about the signed exchange header.voidsetOuterResponse(Response outerResponse)The outer response of signed HTTP exchange which was received from network.voidsetSecurityDetails(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.
-
-