Class EPPRegistryCreateCmd

All Implemented Interfaces:
EPPCodecComponent, EPPMessage, Serializable, Cloneable

public class EPPRegistryCreateCmd extends EPPCreateCmd
Represents an EPP Registry <create> command, which provides a transform operation that allows a client to create a registry object. In addition to the standard EPP command elements, the <create> command MUST contain a <registry:create> element that identifies the registry namespace and the location of the registry schema. The <registry:create> element MUST contain the following child elements:

  • A <registry:zone> element that contains the detailed registry information of the object to be created. Use getZone and setZone to get and set the element.
EPPRegistryCreateResp is the concrete EPPReponse associated with EPPRegistryCreateCmd.

See Also:
  • Constructor Details

    • EPPRegistryCreateCmd

      public EPPRegistryCreateCmd()
      Creates an empty EPPRegistryCreateCmd object. zone is set to null. Use setZone to set zone attribute before sending the create command.
    • EPPRegistryCreateCmd

      public EPPRegistryCreateCmd(String aTransId, EPPRegistryZoneInfo zone)
      Creates a new EPPRegistryCreateCmd object that will create a registry object based on the info in zone.
      Parameters:
      aTransId - Transaction Id associated with command.
      zone - Instance of EPPRegistryZoneInfo to create
  • Method Details

    • getNamespace

      public String getNamespace()
      Get the EPP command Namespace associated with EPPRegistryCreateCmd.
      Specified by:
      getNamespace in interface EPPCodecComponent
      Specified by:
      getNamespace in interface EPPMessage
      Specified by:
      getNamespace in class EPPCommand
      Returns:
      EPPRegistryMapFactory.NS
    • equals

      public boolean equals(Object aObject)
      Compare an instance of EPPRegistryCreateCmd with this instance.
      Overrides:
      equals in class EPPCreateCmd
      Parameters:
      aObject - Object to compare with.
      Returns:
      true if this object is the same as the aObject argument; false otherwise
    • clone

      public Object clone() throws CloneNotSupportedException
      Clone EPPRegistryCreateCmd.
      Specified by:
      clone in interface EPPCodecComponent
      Overrides:
      clone in class EPPCommand
      Returns:
      clone of EPPRegistryCreateCmd
      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 EPPCommand
      Returns:
      Indented XML String if successful; ERROR otherwise.
    • doEncode

      protected Element doEncode(Document aDocument) throws EPPEncodeException
      Encode a DOM Element tree from the attributes of the EPPRegistryCreateCmd instance.
      Specified by:
      doEncode in class EPPCreateCmd
      Parameters:
      aDocument - DOM Document that is being built. Used as an Element factory.
      Returns:
      Root DOM Element representing the EPPRegistryCreateCmd instance.
      Throws:
      EPPEncodeException - Unable to encode EPPRegistryCreateCmd instance.
    • doDecode

      protected void doDecode(Element aElement) throws EPPDecodeException
      Decode the EPPRegistryCreateCmd attributes from the aElement DOM Element tree.
      Specified by:
      doDecode in class EPPCreateCmd
      Parameters:
      aElement - Root DOM Element to decode EPPRegistryCreateCmd from.
      Throws:
      EPPDecodeException - Unable to decode aElement
    • getZone

      public EPPRegistryZoneInfo getZone()
      Get zone to create
      Returns:
      Instance of EPPRegistryZoneInfo to create
    • setZone

      public void setZone(EPPRegistryZoneInfo zone)
      Set zone to create
      Parameters:
      zone - Instance of EPPRegistryZoneInfo to create
    • getKey

      public String getKey()
      Gets the key for the registry object, which is the registry zone name.
      Overrides:
      getKey in class EPPCommand
      Returns:
      The zone name if set; null otherwise.