Class EPPRegistryZone

java.lang.Object
com.verisign.epp.codec.registry.EPPRegistryZone
All Implemented Interfaces:
EPPCodecComponent, Serializable, Cloneable

public class EPPRegistryZone extends Object implements EPPCodecComponent
Represents the summary info of a zone object. Zone summary info of all supported zones is returned is a list when the server receives an <info> command, with a <registry:all> element in it.

The zone summary info element contains:
See Also:
  • Constructor Details

    • EPPRegistryZone

      public EPPRegistryZone()
      Default constructor. Attributes are set to:
      • name - null
      • createDate - null
      • updateDate - null
      Use setName(String) and setCreateDate(Date) before calling encode(Document)
    • EPPRegistryZone

      public EPPRegistryZone(String name, Date createDate)
      Construct EPPRegistryZone with name and create date. updateDate is set to null.
      Parameters:
      name - fully qualified name of zone object
      createDate - creation date of zone object
    • EPPRegistryZone

      public EPPRegistryZone(String name, Date createDate, Date updateDate)
      Construct EPPRegistryZone with name, craete date and last update date.
      Parameters:
      name - fully qualified name of zone object
      createDate - creation date of zone object
      updateDate - date of last update
  • Method Details

    • encode

      public Element encode(Document aDocument) throws EPPEncodeException
      Encode a DOM Element tree from the attributes of the EPPRegistryZone instance.
      Specified by:
      encode in interface EPPCodecComponent
      Parameters:
      aDocument - DOM Document that is being built. Used as an Element factory.
      Returns:
      Element Root DOM Element representing the EPPRegistryZone instance.
      Throws:
      EPPEncodeException - - Unable to encode EPPRegistryZone instance.
    • decode

      public void decode(Element aElement) throws EPPDecodeException
      Decode the EPPRegistryZone attributes from the aElement DOM Element tree.
      Specified by:
      decode in interface EPPCodecComponent
      Parameters:
      aElement - Root DOM Element to decode EPPRegistryZone from.
      Throws:
      EPPDecodeException - Unable to decode aElement
    • equals

      public boolean equals(Object aObject)
      implements a deep EPPRegistryZone compare.
      Overrides:
      equals in class Object
      Parameters:
      aObject - EPPRegistryZone instance to compare with
      Returns:
      true if this object is the same as the aObject argument; false otherwise
    • clone

      public Object clone() throws CloneNotSupportedException
      Clone EPPRegistryZone.
      Specified by:
      clone in interface EPPCodecComponent
      Overrides:
      clone in class Object
      Returns:
      clone of EPPRegistryZone
      Throws:
      CloneNotSupportedException - standard Object.clone exception
    • toString

      public String toString()
      Implementation of Object.toString, which will result in an indented XML String representation of the concrete EPPCodecComponent.
      Overrides:
      toString in class Object
      Returns:
      Indented XML String if successful; ERROR otherwise.
    • getName

      public String getName()
      Get name of the zone object.
      Returns:
      fully qualified name of the zone object
    • setName

      public void setName(String name)
      Set name of the zone object.
      Parameters:
      name - fully qualified name of the zone object
    • getCreateDate

      public Date getCreateDate()
      Get creation date of zone object.
      Returns:
      creation date of zone object
    • setCreateDate

      public void setCreateDate(Date createDate)
      Set creation date of zone object.
      Parameters:
      createDate - creation date of zone object
    • getUpdateDate

      public Date getUpdateDate()
      Get last update date of zone object.
      Returns:
      last update date of zone object
    • setUpdateDate

      public void setUpdateDate(Date updateDate)
      Set last update date of zone object.
      Parameters:
      updateDate - last update date of zone object
    • getNamespace

      public String getNamespace()
      Returns the XML namespace associated with the EPPCodecComponent.
      Specified by:
      getNamespace in interface EPPCodecComponent
      Returns:
      XML namespace for the EPPCodecComponent.