Package land.oras.auth
Record Class HttpClient.ResponseWrapper<T>
java.lang.Object
java.lang.Record
land.oras.auth.HttpClient.ResponseWrapper<T>
- Type Parameters:
T- The response type- Record Components:
response- The responsestatusCode- The status codeheaders- The headers
- Enclosing class:
- HttpClient
public static record HttpClient.ResponseWrapper<T>(T response, int statusCode, Map<String,String> headers)
extends Record
Response wrapper
-
Constructor Summary
ConstructorsConstructorDescriptionResponseWrapper(T response, int statusCode, Map<String, String> headers) Creates an instance of aResponseWrapperrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.headers()Returns the value of theheadersrecord component.response()Returns the value of theresponserecord component.intReturns the value of thestatusCoderecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ResponseWrapper
Creates an instance of aResponseWrapperrecord class.- Parameters:
response- the value for theresponserecord componentstatusCode- the value for thestatusCoderecord componentheaders- the value for theheadersrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
response
Returns the value of theresponserecord component.- Returns:
- the value of the
responserecord component
-
statusCode
public int statusCode()Returns the value of thestatusCoderecord component.- Returns:
- the value of the
statusCoderecord component
-
headers
Returns the value of theheadersrecord component.- Returns:
- the value of the
headersrecord component
-