Record Class ModuleTestInvoker.DoorResponse
java.lang.Object
java.lang.Record
ai.pipestream.module.pipelineprobe.moduletest.ModuleTestInvoker.DoorResponse
- Record Components:
httpStatus- the HTTP status code returned by the doorbody- the raw response body (JSON on success)
- Enclosing class:
ModuleTestInvoker
-
Constructor Summary
ConstructorsConstructorDescriptionDoorResponse(int httpStatus, String body) Creates an instance of aDoorResponserecord class. -
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.intReturns the value of thehttpStatusrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DoorResponse
Creates an instance of aDoorResponserecord class.- Parameters:
httpStatus- the value for thehttpStatusrecord componentbody- the value for thebodyrecord component
-
-
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. -
httpStatus
public int httpStatus()Returns the value of thehttpStatusrecord component.- Returns:
- the value of the
httpStatusrecord component
-
body
-