mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 20:18:34 +02:00
Add autoRenewEndTime field to Domain entity (#765)
* Add autoRenewEndTime field to Domain entity This is the first step towards allowing administrators to selectively disable autorenew.
This commit is contained in:
parent
98db79d3d1
commit
d873b9f69a
9 changed files with 103 additions and 20 deletions
|
@ -185,6 +185,7 @@ class google.registry.model.domain.DomainBase {
|
|||
java.util.Set<google.registry.model.eppcommon.StatusValue> status;
|
||||
java.util.Set<google.registry.persistence.VKey<google.registry.model.host.HostResource>> nsHosts;
|
||||
java.util.Set<java.lang.String> subordinateHosts;
|
||||
org.joda.time.DateTime autorenewEndTime;
|
||||
org.joda.time.DateTime deletionTime;
|
||||
org.joda.time.DateTime lastEppUpdateTime;
|
||||
org.joda.time.DateTime lastTransferTime;
|
||||
|
@ -765,4 +766,4 @@ enum google.registry.model.transfer.TransferStatus {
|
|||
PENDING;
|
||||
SERVER_APPROVED;
|
||||
SERVER_CANCELLED;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue