Package google.registry.flows.custom
Record Class DomainDeleteFlowCustomLogic.BeforeResponseParameters
java.lang.Object
java.lang.Record
google.registry.flows.custom.DomainDeleteFlowCustomLogic.BeforeResponseParameters
- Enclosing class:
DomainDeleteFlowCustomLogic
public static record DomainDeleteFlowCustomLogic.BeforeResponseParameters(Result.Code resultCode, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions)
extends Record
A record to encapsulate parameters for a call to
DomainDeleteFlowCustomLogic.beforeResponse(google.registry.flows.custom.DomainDeleteFlowCustomLogic.BeforeResponseParameters)
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Builder forDomainDeleteFlowCustomLogic.BeforeResponseParameters
. -
Constructor Summary
ConstructorDescriptionBeforeResponseParameters
(Result.Code resultCode, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions) Creates an instance of aBeforeResponseParameters
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.com.google.common.collect.ImmutableList
<? extends EppResponse.ResponseExtension> Returns the value of theresponseExtensions
record component.Returns the value of theresultCode
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
BeforeResponseParameters
public BeforeResponseParameters(Result.Code resultCode, com.google.common.collect.ImmutableList<? extends EppResponse.ResponseExtension> responseExtensions) Creates an instance of aBeforeResponseParameters
record class.- Parameters:
resultCode
- the value for theresultCode
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)
. -
resultCode
Returns the value of theresultCode
record component.- Returns:
- the value of the
resultCode
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
-