mirror of
https://github.com/google/nomulus.git
synced 2025-05-16 17:37:13 +02:00
Registry should not be a BackupGroupRoot
In [] I made Registry a BGR in prep for each Registry being in its own entity group. But we decided not to do that, and in [] mcilwain@ moved Registry under the cross-tld root. So there's no reason for Registry to implement BackupGroupRoot anymore. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=120402417
This commit is contained in:
parent
36ab6c15fe
commit
9ca191f3d4
4 changed files with 2 additions and 22 deletions
|
@ -41,9 +41,9 @@ import com.google.common.collect.Iterables;
|
|||
import com.google.common.collect.Ordering;
|
||||
import com.google.common.net.InternetDomainName;
|
||||
import com.google.domain.registry.config.RegistryEnvironment;
|
||||
import com.google.domain.registry.model.BackupGroupRoot;
|
||||
import com.google.domain.registry.model.Buildable;
|
||||
import com.google.domain.registry.model.CreateAutoTimestamp;
|
||||
import com.google.domain.registry.model.ImmutableObject;
|
||||
import com.google.domain.registry.model.common.EntityGroupRoot;
|
||||
import com.google.domain.registry.model.common.TimedTransitionProperty;
|
||||
import com.google.domain.registry.model.common.TimedTransitionProperty.TimedTransition;
|
||||
|
@ -71,7 +71,7 @@ import java.util.Set;
|
|||
/** Persisted per-TLD configuration data. */
|
||||
@Cache(expirationSeconds = RECOMMENDED_MEMCACHE_EXPIRATION)
|
||||
@Entity
|
||||
public class Registry extends BackupGroupRoot implements Buildable {
|
||||
public class Registry extends ImmutableObject implements Buildable {
|
||||
|
||||
@Parent
|
||||
Key<EntityGroupRoot> parent = getCrossTldKey();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue