Package google.registry.flows.custom
Record Class DomainInfoFlowCustomLogic.BeforeResponseReturnData
java.lang.Object
java.lang.Record
google.registry.flows.custom.DomainInfoFlowCustomLogic.BeforeResponseReturnData
- Enclosing class:
DomainInfoFlowCustomLogic
public static record DomainInfoFlowCustomLogic.BeforeResponseReturnData(DomainInfoData resData, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions)
extends Record
A record to encapsulate parameters for the return values from a call to
DomainInfoFlowCustomLogic.beforeResponse(google.registry.flows.custom.DomainInfoFlowCustomLogic.BeforeResponseParameters)
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Builder forDomainInfoFlowCustomLogic.BeforeResponseReturnData
. -
Constructor Summary
ConstructorDescriptionBeforeResponseReturnData
(DomainInfoData resData, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions) Creates an instance of aBeforeResponseReturnData
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.resData()
Returns the value of theresData
record component.com.google.common.collect.ImmutableList
<? extends EppResponse.ResponseExtension> Returns the value of theresponseExtensions
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
BeforeResponseReturnData
public BeforeResponseReturnData(DomainInfoData resData, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions) Creates an instance of aBeforeResponseReturnData
record class.- Parameters:
resData
- the value for theresData
record componentresponseExtensions
- the value for theresponseExtensions
record component
-
-
Method Details
-
newBuilder
-
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)
. -
resData
Returns the value of theresData
record component.- Returns:
- the value of the
resData
record component
-
responseExtensions
public com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions()Returns the value of theresponseExtensions
record component.- Returns:
- the value of the
responseExtensions
record component
-