Change all uses of legacy sharedFields to use EppResource fields

This is the penultimate step of migrating away from sharedFields. The next step is to remove them entirely.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=116364048
This commit is contained in:
mcilwain 2016-03-04 08:27:27 -08:00 committed by Justine Tunney
parent 675ec8f086
commit 363c812d10
7 changed files with 11 additions and 34 deletions

View file

@ -14,8 +14,6 @@
package com.google.domain.registry.model;
import com.google.domain.registry.model.EppResource.SharedFields;
import javax.xml.bind.annotation.XmlTransient;
/**
@ -30,9 +28,8 @@ public abstract class BackupGroupRoot extends ImmutableObject {
/**
* An automatically managed timestamp of when this object was last written to datastore.
*
* <p>Note that this is distinct from the EPP-specified {@link SharedFields#lastUpdateTime} on
* {@link EppResource} objects, in that it is updated on every save, rather than just in response
* to an {@code <update>} command.
* <p>Note that this is distinct from the EPP-specified {@link EppResource#lastEppUpdateTime}, in
* that this is updated on every save, rather than only in response to an {@code <update>} command
*/
@XmlTransient
UpdateAutoTimestamp updateTimestamp = UpdateAutoTimestamp.create(null);