Class XjcDomainNsType

java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.domain.XjcDomainNsType

public class XjcDomainNsType extends XjcObject

Java class for nsType complex type

.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="nsType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="hostObj" type="{urn:ietf:params:xml:ns:eppcom-1.0}labelType" maxOccurs="unbounded"/>
         <element name="hostAttr" type="{urn:ietf:params:xml:ns:domain-1.0}hostAttrType" maxOccurs="unbounded"/>
       </choice>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • XjcDomainNsType

      public XjcDomainNsType()
  • Method Details

    • getHostAttrs

      public List<XjcDomainHostAttrType> getHostAttrs()
      Gets the value of the hostAttrs 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 hostAttrs property.

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

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

      Returns:
      The value of the hostAttrs property.
    • getHostObjs

      public List<String> getHostObjs()
      Gets the value of the hostObjs 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 hostObjs property.

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

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

      Returns:
      The value of the hostObjs property.