Package google.registry.xjc.secdns
Class XjcSecdnsDsOrKeyType
java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.secdns.XjcSecdnsDsOrKeyType
Java class for dsOrKeyType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="dsOrKeyType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="maxSigLife" type="{urn:ietf:params:xml:ns:secDNS-1.1}maxSigLifeType" minOccurs="0"/>
<choice>
<element name="dsData" type="{urn:ietf:params:xml:ns:secDNS-1.1}dsDataType" maxOccurs="unbounded"/>
<element name="keyData" type="{urn:ietf:params:xml:ns:secDNS-1.1}keyDataType" maxOccurs="unbounded"/>
</choice>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Modifier and TypeFieldDescriptionprotected List
<XjcSecdnsDsDataType> protected List
<XjcSecdnsKeyDataType> protected Integer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the dsDatas property.Gets the value of the keyDatas property.Gets the value of the maxSigLife property.void
setMaxSigLife
(Integer value) Sets the value of the maxSigLife property.
-
Field Details
-
maxSigLife
-
keyDatas
-
dsDatas
-
-
Constructor Details
-
XjcSecdnsDsOrKeyType
public XjcSecdnsDsOrKeyType()
-
-
Method Details
-
getMaxSigLife
Gets the value of the maxSigLife property.- Returns:
- possible object is
Integer
-
setMaxSigLife
Sets the value of the maxSigLife property.- Parameters:
value
- allowed object isInteger
-
getKeyDatas
Gets the value of the keyDatas property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
For example, to add a new item, do as follows:set
method for the keyDatas property.getKeyDatas().add(newItem);
Objects of the following type(s) are allowed in the listXjcSecdnsKeyDataType
- Returns:
- The value of the keyDatas property.
-
getDsDatas
Gets the value of the dsDatas property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
For example, to add a new item, do as follows:set
method for the dsDatas property.getDsDatas().add(newItem);
Objects of the following type(s) are allowed in the listXjcSecdnsDsDataType
- Returns:
- The value of the dsDatas property.
-