Class EPPRegistryCreateResp

  • All Implemented Interfaces:
    EPPCodecComponent, EPPMessage, java.io.Serializable, java.lang.Cloneable

    public class EPPRegistryCreateResp
    extends EPPResponse
    Represents an EPP Registry <registry:creData> response to a EPPRegistryCreateCmd. When a <crate> command has been processed successfully, the EPP <resData> element MUST contain a child <registry:creData> element that identifies the registry namespace and the location of the registry schema. The <registry:creData> element contains the following child elements:

    • A <registry:name> element that contains the fully qualified name of zone object that has been created. Use getName and setName to get and set the element.
    • A <registry.crDate> element that contains the date and time of zone object creation. Use getCreateDate and setCreateDate to get and set the element.


    See Also:
    EPPRegistryCreateCmd, Serialized Form
    • Field Detail

      • ELM_LOCALNAME

        public static final java.lang.String ELM_LOCALNAME
        XML local name for EPPRegistryCreateResp.
        See Also:
        Constant Field Values
      • ELM_NAME

        public static final java.lang.String ELM_NAME
        XML root tag for EPPRegistryCreateResp.
        See Also:
        Constant Field Values
    • Constructor Detail

      • EPPRegistryCreateResp

        public EPPRegistryCreateResp()
        EPPRegistryCreateResp default constructor. Must call required setter methods before encode. the defaults include the following:

        • name is set to null
        • createDate date is set to null

        name must be set before invoking encode.
      • EPPRegistryCreateResp

        public EPPRegistryCreateResp​(EPPTransId aTransId,
                                     java.lang.String aName)
        EPPRegistryCreateResp constructor that takes the aLabel name value as a parameter. The creation date must be set before invoking #encode(Document).
        Parameters:
        aTransId - transaction Id associated with response
        aName - aLabel name of zone object
      • EPPRegistryCreateResp

        public EPPRegistryCreateResp​(EPPTransId aTransId,
                                     EPPRegistryZoneName aName)
        EPPRegistryCreateResp constructor that takes the name value as a parameter. The creation date must be set before invoking #encode(Document).
        Parameters:
        aTransId - transaction Id associated with response
        aName - name of zone object
      • EPPRegistryCreateResp

        public EPPRegistryCreateResp​(EPPTransId aTransId,
                                     java.lang.String aName,
                                     java.util.Date aCreateDate)
        EPPRegistryCreateResp constructor that takes required values as parameters.
        Parameters:
        aTransId - transaction Id associated with response
        aName - aLabel name of zone object
        aCreateDate - creation date of the zone object
      • EPPRegistryCreateResp

        public EPPRegistryCreateResp​(EPPTransId aTransId,
                                     EPPRegistryZoneName aName,
                                     java.util.Date aCreateDate)
        EPPRegistryCreateResp constructor that takes required values as parameters.
        Parameters:
        aTransId - transaction Id associated with response
        aName - name of zone object
        aCreateDate - creation date of the zone object
    • Method Detail

      • getType

        public java.lang.String getType()
        Gets the EPP command type associated with EPPRegistryCreateResp.
        Overrides:
        getType in class EPPResponse
        Returns:
        EPPRegistryCreateResp.ELM_NAME
      • equals

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

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

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

        protected org.w3c.dom.Element doEncode​(org.w3c.dom.Document aDocument)
                                        throws EPPEncodeException
        Encode a DOM Element tree from the attributes of the EPPRegistryCreateResp instance.
        Overrides:
        doEncode in class EPPResponse
        Parameters:
        aDocument - DOM Document that is being built. Used as an Element factory.
        Returns:
        Element Root DOM Element representing the EPPRegistryCreateResp instance.
        Throws:
        EPPEncodeException - Unable to encode EPPRegistryCreateResp instance.
      • doDecode

        protected void doDecode​(org.w3c.dom.Element aElement)
                         throws EPPDecodeException
        Decode the EPPRegistryCreateResp attributes from the aElement DOM Element tree.
        Overrides:
        doDecode in class EPPResponse
        Parameters:
        aElement - Root DOM Element to decode EPPRegistryCreateResp from.
        Throws:
        EPPDecodeException - Unable to decode aElement
      • getName

        public EPPRegistryZoneName getName()
        Gets the zone name.
        Returns:
        Zone name if set; null otherwise.
      • setName

        public void setName​(EPPRegistryZoneName aName)
        Sets the zone name
        Parameters:
        aName - Zone name
      • setName

        public void setName​(java.lang.String aName)
        Sets the aLabel zone name
        Parameters:
        aName - aLabel zone name
      • getCreateDate

        public java.util.Date getCreateDate()
        Get the zone object creation date.
        Returns:
        zone object creation date
      • setCreateDate

        public void setCreateDate​(java.util.Date createDate)
        Set the zone object creation date.
        Parameters:
        createDate - zone object creation date