Package google.registry.model.transfer
Class BaseTransferObject
- java.lang.Object
-
- google.registry.model.ImmutableObject
-
- google.registry.model.transfer.BaseTransferObject
-
- All Implemented Interfaces:
UnsafeSerializable
,java.io.Serializable
,java.lang.Cloneable
- Direct Known Subclasses:
TransferData
,TransferResponse
@MappedSuperclass public abstract class BaseTransferObject extends ImmutableObject implements UnsafeSerializable
Fields common toTransferData
andTransferResponse
.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BaseTransferObject.Builder<T extends BaseTransferObject,B extends BaseTransferObject.Builder<?,?>>
Base class for builders ofBaseTransferObject
subclasses.-
Nested classes/interfaces inherited from class google.registry.model.ImmutableObject
ImmutableObject.DoNotHydrate, ImmutableObject.IgnoredInDiffableMap, ImmutableObject.Insignificant
-
-
Field Summary
-
Fields inherited from class google.registry.model.ImmutableObject
hashCode
-
-
Constructor Summary
Constructors Constructor Description BaseTransferObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getGainingRegistrarId()
java.lang.String
getLosingRegistrarId()
org.joda.time.DateTime
getPendingTransferExpirationTime()
org.joda.time.DateTime
getTransferRequestTime()
TransferStatus
getTransferStatus()
-
Methods inherited from class google.registry.model.ImmutableObject
clone, cloneEmptyToNull, createVKey, equals, getSignificantFields, hashCode, toDiffableFieldMap, toHydratedString, toString, toStringHelper
-
-
-
-
Method Detail
-
getTransferStatus
public TransferStatus getTransferStatus()
-
getGainingRegistrarId
public java.lang.String getGainingRegistrarId()
-
getTransferRequestTime
public org.joda.time.DateTime getTransferRequestTime()
-
getLosingRegistrarId
public java.lang.String getLosingRegistrarId()
-
getPendingTransferExpirationTime
public org.joda.time.DateTime getPendingTransferExpirationTime()
-
-