Class DomainDsData
- java.lang.Object
-
- google.registry.model.ImmutableObject
-
- google.registry.model.domain.secdns.DomainDsDataBase
-
- google.registry.model.domain.secdns.DomainDsData
-
- All Implemented Interfaces:
UnsafeSerializable
,java.io.Serializable
,java.lang.Cloneable
@Entity public class DomainDsData extends DomainDsDataBase
Holds the data necessary to construct a single Delegation Signer (DS) record for a domain.- See Also:
- RFC 5910, RFC 4034, Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class google.registry.model.ImmutableObject
ImmutableObject.DoNotHydrate, ImmutableObject.IgnoredInDiffableMap, ImmutableObject.Insignificant
-
-
Field Summary
-
Fields inherited from class google.registry.model.ImmutableObject
hashCode
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DomainDsData
cloneWithDomainRepoId(java.lang.String domainRepoId)
DomainDsData
cloneWithoutDomainRepoId()
static DomainDsData
create(int keyTag, int algorithm, int digestType, byte[] digest)
static DomainDsData
create(int keyTag, int algorithm, int digestType, byte[] digest, java.lang.String domainRepoId)
static DomainDsData
create(int keyTag, int algorithm, int digestType, java.lang.String digestAsHex)
static DomainDsData
create(DomainDsDataHistory history)
int
getAlgorithm()
byte[]
getDigest()
int
getDigestType()
java.lang.String
getDomainRepoId()
int
getKeyTag()
-
Methods inherited from class google.registry.model.domain.secdns.DomainDsDataBase
getDigestAsString, toRrData
-
Methods inherited from class google.registry.model.ImmutableObject
clone, cloneEmptyToNull, createVKey, equals, getSignificantFields, hashCode, toDiffableFieldMap, toHydratedString, toString, toStringHelper
-
-
-
-
Method Detail
-
getDomainRepoId
public java.lang.String getDomainRepoId()
- Overrides:
getDomainRepoId
in classDomainDsDataBase
-
getKeyTag
public int getKeyTag()
- Overrides:
getKeyTag
in classDomainDsDataBase
-
getAlgorithm
public int getAlgorithm()
- Overrides:
getAlgorithm
in classDomainDsDataBase
-
getDigestType
public int getDigestType()
- Overrides:
getDigestType
in classDomainDsDataBase
-
getDigest
public byte[] getDigest()
- Overrides:
getDigest
in classDomainDsDataBase
-
cloneWithDomainRepoId
public DomainDsData cloneWithDomainRepoId(java.lang.String domainRepoId)
-
cloneWithoutDomainRepoId
public DomainDsData cloneWithoutDomainRepoId()
-
create
public static DomainDsData create(int keyTag, int algorithm, int digestType, byte[] digest, java.lang.String domainRepoId)
-
create
public static DomainDsData create(int keyTag, int algorithm, int digestType, byte[] digest)
-
create
public static DomainDsData create(int keyTag, int algorithm, int digestType, java.lang.String digestAsHex)
-
create
public static DomainDsData create(DomainDsDataHistory history)
-
-