Class XjcSecdnsDsOrKeyType

java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.secdns.XjcSecdnsDsOrKeyType

public class XjcSecdnsDsOrKeyType extends XjcObject

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 Details

  • Constructor Details

    • XjcSecdnsDsOrKeyType

      public XjcSecdnsDsOrKeyType()
  • Method Details

    • getMaxSigLife

      public Integer getMaxSigLife()
      Gets the value of the maxSigLife property.
      Returns:
      possible object is Integer
    • setMaxSigLife

      public void setMaxSigLife(Integer value)
      Sets the value of the maxSigLife property.
      Parameters:
      value - allowed object is Integer
    • getKeyDatas

      public List<XjcSecdnsKeyDataType> 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 set method for the keyDatas property.

      For example, to add a new item, do as follows:

       getKeyDatas().add(newItem);
       
      Objects of the following type(s) are allowed in the list XjcSecdnsKeyDataType

      Returns:
      The value of the keyDatas property.
    • getDsDatas

      public List<XjcSecdnsDsDataType> 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 set method for the dsDatas property.

      For example, to add a new item, do as follows:

       getDsDatas().add(newItem);
       
      Objects of the following type(s) are allowed in the list XjcSecdnsDsDataType

      Returns:
      The value of the dsDatas property.