Class EPPOrgDeleteCmd

    • Field Detail

      • ELM_LOCALNAME

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

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

      • EPPOrgDeleteCmd

        public EPPOrgDeleteCmd()
        EPPOrgDeleteCmd default constructor.
      • EPPOrgDeleteCmd

        public EPPOrgDeleteCmd​(java.lang.String aTransId)
        EPPOrgDeleteCmd constructor that only takes the client transaction identifier
        Parameters:
        aTransId - Transaction Id associated with command.
      • EPPOrgDeleteCmd

        public EPPOrgDeleteCmd​(java.lang.String aTransId,
                               java.lang.String aOrgId)
        EPPOrgDeleteCmd constructor that takes the transaction identifier and the org identifier.
        Parameters:
        aTransId - Transaction Id associated with command. Set to null if a client transaction identifier is not desired.
        aOrgId - Org identifier
    • Method Detail

      • getOrgId

        public java.lang.String getOrgId()
        Gets the org identifier.
        Returns:
        The org identifier if defined;null otherwise.
      • setOrgId

        public void setOrgId​(java.lang.String aOrgId)
        Sets the org identifier.
        Parameters:
        aOrgId - The org identifier
      • doEncode

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

        protected void doDecode​(org.w3c.dom.Element aElement)
                         throws EPPDecodeException
        Decode the EPPOrgDeleteCmd attributes from the aElement DOM Element tree.
        Specified by:
        doDecode in class EPPDeleteCmd
        Parameters:
        aElement - Root DOM Element to decode EPPOrgDeleteCmd from.
        Throws:
        EPPDecodeException - Unable to decode aElement
      • equals

        public boolean equals​(java.lang.Object aObject)
        Compare an instance of EPPOrgDeleteCmd with this instance.
        Overrides:
        equals in class EPPDeleteCmd
        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 EPPOrgDeleteCmd.
        Specified by:
        clone in interface EPPCodecComponent
        Overrides:
        clone in class EPPCommand
        Returns:
        Deep copy clone of EPPOrgDeleteCmd
        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 EPPCommand
        Returns:
        Indented XML String if successful; ERROR otherwise.