1
0
mirror of https://github.com/google/nomulus synced 2026-04-21 16:50:44 +00:00

Rename DomainContent -> DomainBase (#1729)

* Rename DomainContent -> DomainBase

This is a follow-up to PR #1725 which renamed DomainBase to Domain. Now, the
class naming hierarchy has the same structure as ContactBase/HostBase.
This commit is contained in:
Ben McIlwain
2022-08-02 17:21:17 -04:00
committed by GitHub
parent 35530616d6
commit f6d2a7ff91
20 changed files with 131 additions and 138 deletions

View File

@@ -129,7 +129,7 @@ class google.registry.model.domain.Domain {
class google.registry.model.domain.DomainAuthInfo {
google.registry.model.eppcommon.AuthInfo$PasswordAuth pw;
}
class google.registry.model.domain.DomainContent {
class google.registry.model.domain.DomainBase {
@Id java.lang.String repoId;
google.registry.model.domain.DomainAuthInfo authInfo;
google.registry.model.domain.launch.LaunchNotice launchNotice;
@@ -163,7 +163,7 @@ class google.registry.model.domain.DomainHistory {
@Parent com.googlecode.objectify.Key<? extends google.registry.model.EppResource> parent;
boolean bySuperuser;
byte[] xmlBytes;
google.registry.model.domain.DomainContent domainContent;
google.registry.model.domain.DomainBase domainBase;
google.registry.model.domain.Period period;
google.registry.model.eppcommon.Trid trid;
google.registry.model.reporting.HistoryEntry$Type type;