Record Class AdvancedRedirectHandler.Context
java.lang.Object
java.lang.Record
org.jboss.resteasy.reactive.client.handlers.AdvancedRedirectHandler.Context
- Enclosing interface:
- AdvancedRedirectHandler
public static record AdvancedRedirectHandler.Context(jakarta.ws.rs.core.Response jaxRsResponse, io.vertx.core.http.HttpClientRequest request)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionContext(jakarta.ws.rs.core.Response jaxRsResponse, io.vertx.core.http.HttpClientRequest request) Creates an instance of aContextrecord 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.jakarta.ws.rs.core.ResponseReturns the value of thejaxRsResponserecord component.io.vertx.core.http.HttpClientRequestrequest()Returns the value of therequestrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Context
public Context(jakarta.ws.rs.core.Response jaxRsResponse, io.vertx.core.http.HttpClientRequest request) Creates an instance of aContextrecord class.- Parameters:
jaxRsResponse- the value for thejaxRsResponserecord componentrequest- the value for therequestrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
jaxRsResponse
public jakarta.ws.rs.core.Response jaxRsResponse()Returns the value of thejaxRsResponserecord component.- Returns:
- the value of the
jaxRsResponserecord component
-
request
public io.vertx.core.http.HttpClientRequest request()Returns the value of therequestrecord component.- Returns:
- the value of the
requestrecord component
-