Package google.registry.model
Interface EppResource.ResourceWithTransferData<T extends TransferData>
-
- All Known Implementing Classes:
Contact
,ContactBase
,Domain
,DomainBase
- Enclosing class:
- EppResource
public static interface EppResource.ResourceWithTransferData<T extends TransferData>
An interface for resources that have transfer data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.joda.time.DateTime
getLastTransferTime()
The time that this resource was last transferred.T
getTransferData()
-
-
-
Method Detail
-
getTransferData
T getTransferData()
-
getLastTransferTime
org.joda.time.DateTime getLastTransferTime()
The time that this resource was last transferred.Can be null if the resource has never been transferred.
-
-