Record Class RestClientResponseValidator.ValidationError
java.lang.Object
java.lang.Record
org.apache.camel.spi.RestClientResponseValidator.ValidationError
- Record Components:
statusCode- to use a specific HTTP status code for this validation errorbody- to use a specific message body for this validation error
- Enclosing interface:
RestClientResponseValidator
-
Constructor Summary
ConstructorsConstructorDescriptionValidationError(int statusCode, String body) Creates an instance of aValidationErrorrecord 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 thestatusCoderecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ValidationError
Creates an instance of aValidationErrorrecord class.- Parameters:
statusCode- the value for thestatusCoderecord 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. -
statusCode
public int statusCode()Returns the value of thestatusCoderecord component.- Returns:
- the value of the
statusCoderecord component
-
body
-