Package google.registry.flows.custom
Record Class DomainRenewFlowCustomLogic.AfterValidationParameters
java.lang.Object
java.lang.Record
google.registry.flows.custom.DomainRenewFlowCustomLogic.AfterValidationParameters
- Enclosing class:
DomainRenewFlowCustomLogic
public static record DomainRenewFlowCustomLogic.AfterValidationParameters(Domain existingDomain, int years, org.joda.time.DateTime now)
extends Record
A class to encapsulate parameters for a call to
DomainRenewFlowCustomLogic.afterValidation(google.registry.flows.custom.DomainRenewFlowCustomLogic.AfterValidationParameters)
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Builder forDomainRenewFlowCustomLogic.AfterValidationParameters
. -
Constructor Summary
ConstructorDescriptionAfterValidationParameters
(Domain existingDomain, int years, org.joda.time.DateTime now) Creates an instance of aAfterValidationParameters
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexistingDomain
record component.final int
hashCode()
Returns a hash code value for this object.org.joda.time.DateTime
now()
Returns the value of thenow
record component.final String
toString()
Returns a string representation of this record class.int
years()
Returns the value of theyears
record component.
-
Constructor Details
-
AfterValidationParameters
Creates an instance of aAfterValidationParameters
record class.- Parameters:
existingDomain
- the value for theexistingDomain
record componentyears
- the value for theyears
record componentnow
- the value for thenow
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
existingDomain
Returns the value of theexistingDomain
record component.- Returns:
- the value of the
existingDomain
record component
-
years
public int years()Returns the value of theyears
record component.- Returns:
- the value of the
years
record component
-
now
public org.joda.time.DateTime now()Returns the value of thenow
record component.- Returns:
- the value of the
now
record component
-