Package google.registry.flows.custom
Class DomainCheckFlowCustomLogic.AfterValidationParameters
- java.lang.Object
-
- google.registry.model.ImmutableObject
-
- google.registry.flows.custom.DomainCheckFlowCustomLogic.AfterValidationParameters
-
- All Implemented Interfaces:
java.lang.Cloneable
- Enclosing class:
- DomainCheckFlowCustomLogic
public abstract static class DomainCheckFlowCustomLogic.AfterValidationParameters extends ImmutableObject
A class to encapsulate parameters for a call toDomainCheckFlowCustomLogic.afterValidation(google.registry.flows.custom.DomainCheckFlowCustomLogic.AfterValidationParameters)
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DomainCheckFlowCustomLogic.AfterValidationParameters.Builder
Builder forDomainCheckFlowCustomLogic.AfterValidationParameters
.-
Nested classes/interfaces inherited from class google.registry.model.ImmutableObject
ImmutableObject.DoNotCompare, ImmutableObject.DoNotHydrate, ImmutableObject.EmptySetToNull, ImmutableObject.IgnoredInDiffableMap, ImmutableObject.Insignificant
-
-
Field Summary
-
Fields inherited from class google.registry.model.ImmutableObject
hashCode
-
-
Constructor Summary
Constructors Constructor Description AfterValidationParameters()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract org.joda.time.DateTime
asOfDate()
The time to perform the domain check as of.abstract com.google.common.collect.ImmutableMap<java.lang.String,com.google.common.net.InternetDomainName>
domainNames()
static DomainCheckFlowCustomLogic.AfterValidationParameters.Builder
newBuilder()
-
Methods inherited from class google.registry.model.ImmutableObject
clone, cloneEmptyToNull, equals, getSignificantFields, hashCode, toDiffableFieldMap, toHydratedString, toString, toStringHelper
-
-
-
-
Method Detail
-
domainNames
public abstract com.google.common.collect.ImmutableMap<java.lang.String,com.google.common.net.InternetDomainName> domainNames()
-
asOfDate
public abstract org.joda.time.DateTime asOfDate()
The time to perform the domain check as of. This defaults to the current time, but can be overridden in v>=0.12 of the fee extension.
-
newBuilder
public static DomainCheckFlowCustomLogic.AfterValidationParameters.Builder newBuilder()
-
-