Class EPPDomainInfoCmd

All Implemented Interfaces:
EPPCodecComponent, EPPMessage, Serializable, Cloneable

public class EPPDomainInfoCmd extends EPPInfoCmd
Represents an EPP Domain <info> command that is used to retrieve information associated with a domain. The <domain:info> element MUST contain the following child elements:

  • A <domain:name> element that contains the fully qualified domain name for which information is requested. An OPTIONAL "hosts" attribute is available to control return of information describing hosts related to the domain object. A value of "all" (the default, which MAY be absent) returns information describing both subordinate and delegated hosts. A value of "del" returns information describing only delegated hosts. A value of "sub" returns information describing only subordinate hosts. A value of "none" returns no information describing delegated or subordinate hosts. Use getName and setName to get and set the element.

EPPDomainInfoResp is the concrete EPPReponse associated with EPPDomainInfoCmd.
See Also:
  • Field Details

    • ELM_LOCALNAME

      public static final String ELM_LOCALNAME
      XML local name for EPPDomainInfoCmd.
      See Also:
    • ELM_NAME

      public static final String ELM_NAME
      XML Element Name of EPPDomainInfoCmd root element.
      See Also:
    • HOSTS_ALL

      public static final String HOSTS_ALL
      Constant on a call to setHosts to get information on all hosts (delegated and subordinate). This is the default settings.
      See Also:
    • HOSTS_DELEGATED

      public static final String HOSTS_DELEGATED
      Constant on a call to setHosts to get information on just the delegated hosts.
      See Also:
    • HOSTS_SUBORDINATE

      public static final String HOSTS_SUBORDINATE
      Constant on a call to setHosts to get information on just the subordinate hosts.
      See Also:
    • HOSTS_NONE

      public static final String HOSTS_NONE
      Constant on a call to setHosts to get no information describing delegated or subordinate hosts.
      See Also:
  • Constructor Details

    • EPPDomainInfoCmd

      public EPPDomainInfoCmd()
      EPPDomainInfoCmd default constructor. The name is initialized to null. The name must be set before invoking encode.
    • EPPDomainInfoCmd

      public EPPDomainInfoCmd(String aTransId, String aName)
      EPPDomainInfoCmd constructor that takes the domain name as an argument.
      Parameters:
      aTransId - Transaction Id associated with command.
      aName - Domain name to get information on.
    • EPPDomainInfoCmd

      public EPPDomainInfoCmd(String aTransId, String aName, EPPAuthInfo aAuthInfo)
      EPPDomainInfoCmd constructor that takes the domain name as an argument.
      Parameters:
      aTransId - Transaction Id associated with command.
      aName - Domain name to get information on.
      aAuthInfo - Optional authorization information. Set to null for no authorization information.
  • Method Details

    • getNamespace

      public String getNamespace()
      Gets the EPP command Namespace associated with EPPDomainInfoCmd.
      Specified by:
      getNamespace in interface EPPCodecComponent
      Specified by:
      getNamespace in interface EPPMessage
      Specified by:
      getNamespace in class EPPCommand
      Returns:
      EPPDomainMapFactory.NS
    • getKey

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

      public void setHosts(String aHost)
      Sets the desired level of host information. The default is HOSTS_ALL.
      Parameters:
      aHost - Should be one of the HOSTS_ constants.
    • getHosts

      public String getHosts()
      Sets the desired level of host information.
      Returns:
      Should be one of the HOSTS_ constants.
    • doEncode

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

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

      public String getName()
      Gets the domain name to get information on.
      Returns:
      Domain Name String instance if defined; null otherwise.
    • setName

      public void setName(String aName)
      Sets the domain name to get information on.
      Parameters:
      aName - Domain Name
    • getAuthInfo

      public EPPAuthInfo getAuthInfo()
      Get authorization information
      Returns:
      Authorization information if defined; null otherwise;
    • setAuthInfo

      public void setAuthInfo(EPPAuthInfo aAuthInfo)
      Set authorization information
      Parameters:
      aAuthInfo - EPPAuthInfo
    • equals

      public boolean equals(Object aObject)
      Compare an instance of EPPDomainInfoCmd with this instance.
      Overrides:
      equals in class EPPInfoCmd
      Parameters:
      aObject - Object to compare with.
      Returns:
      DOCUMENT ME!
    • clone

      public Object clone() throws CloneNotSupportedException
      Clone EPPDomainInfoCmd.
      Specified by:
      clone in interface EPPCodecComponent
      Overrides:
      clone in class EPPCommand
      Returns:
      clone of EPPDomainInfoCmd
      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.