Record Class HttpResponseRecord
java.lang.Object
java.lang.Record
com.shaft.capture.model.network.HttpResponseRecord
- Record Components:
statusCode- HTTP response status codeheaders- sanitized, deterministically ordered response headersbody- optional safe reference to the response body
-
Constructor Summary
ConstructorsConstructorDescriptionHttpResponseRecord(int statusCode, Map<String, String> headers, BodyRef body) Creates an immutable HTTP response record. -
Method Summary
Modifier and TypeMethodDescriptionbody()Returns the value of thebodyrecord component.final 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.intReturns the value of thestatusCoderecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
HttpResponseRecord
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
statusCode
public int statusCode()Returns the value of thestatusCoderecord component.- Returns:
- the value of the
statusCoderecord component
-
headers
-
body
-