Package org.stubit.http
Record Class StubbedResponse
java.lang.Object
java.lang.Record
org.stubit.http.StubbedResponse
- Record Components:
statusCode- status code that will be used in the responsebody- body that will be used for the responseheaders- headers that will be set in the response
public record StubbedResponse(int statusCode, String body, Map<String,List<String>> headers)
extends Record
A
StubbedResponse defines the response that will be returned by the stub.
Please use the response() initializer to create this with a fluent builder API.
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
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.static StubbedResponse.Builderresponse()intReturns the value of thestatusCoderecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
StubbedResponse
Creates an instance of aStubbedResponserecord class.- Parameters:
statusCode- the value for thestatusCoderecord componentbody- the value for thebodyrecord componentheaders- the value for theheadersrecord component
-
-
Method Details
-
response
- Returns:
- a newly created
StubbedResponse.Builder
-
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 '=='. -
statusCode
public int statusCode()Returns the value of thestatusCoderecord component.- Returns:
- the value of the
statusCoderecord component
-
body
Returns the value of thebodyrecord component.- Returns:
- the value of the
bodyrecord component
-
headers
Returns the value of theheadersrecord component.- Returns:
- the value of the
headersrecord component
-