Package google.registry.xjc.secdns
Class XjcSecdnsDsDataType
java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.secdns.XjcSecdnsDsDataType
Java class for dsDataType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="dsDataType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="keyTag" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
<element name="alg" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
<element name="digestType" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
<element name="digest" type="{http://www.w3.org/2001/XMLSchema}hexBinary"/>
<element name="keyData" type="{urn:ietf:params:xml:ns:secDNS-1.1}keyDataType" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Modifier and TypeFieldDescriptionprotected short
protected byte[]
protected short
protected XjcSecdnsKeyDataType
protected int
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionshort
getAlg()
Gets the value of the alg property.byte[]
Gets the value of the digest property.short
Gets the value of the digestType property.Gets the value of the keyData property.int
Gets the value of the keyTag property.void
setAlg
(short value) Sets the value of the alg property.void
setDigest
(byte[] value) Sets the value of the digest property.void
setDigestType
(short value) Sets the value of the digestType property.void
setKeyData
(XjcSecdnsKeyDataType value) Sets the value of the keyData property.void
setKeyTag
(int value) Sets the value of the keyTag property.
-
Field Details
-
keyTag
protected int keyTag -
alg
protected short alg -
digestType
protected short digestType -
digest
protected byte[] digest -
keyData
-
-
Constructor Details
-
XjcSecdnsDsDataType
public XjcSecdnsDsDataType()
-
-
Method Details
-
getKeyTag
public int getKeyTag()Gets the value of the keyTag property. -
setKeyTag
public void setKeyTag(int value) Sets the value of the keyTag property. -
getAlg
public short getAlg()Gets the value of the alg property. -
setAlg
public void setAlg(short value) Sets the value of the alg property. -
getDigestType
public short getDigestType()Gets the value of the digestType property. -
setDigestType
public void setDigestType(short value) Sets the value of the digestType property. -
getDigest
public byte[] getDigest()Gets the value of the digest property.- Returns:
- possible object is
String
-
setDigest
public void setDigest(byte[] value) Sets the value of the digest property.- Parameters:
value
- allowed object isString
-
getKeyData
Gets the value of the keyData property.- Returns:
- possible object is
XjcSecdnsKeyDataType
-
setKeyData
Sets the value of the keyData property.- Parameters:
value
- allowed object isXjcSecdnsKeyDataType
-