Class EPPRegistryDomainContact

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

public class EPPRegistryDomainContact extends EPPRegistryAbstractMinMax
Defines the miniumum and maximum numbers of contacts by contact type. The contact type is defined with the required "type" attribute with the possible values of "admin", "tech", and "billing". The <registry:contact> element contains the following child elements

See Also:
  • Field Details

  • Constructor Details

    • EPPRegistryDomainContact

      public EPPRegistryDomainContact()
      Default constructor of EPPRegistryDomainContact. All attributes are set to null. Must call setType(EPPRegistryDomainContact.Type) and EPPRegistryAbstractMinMax.setMin(Integer) before calling encode(Document).
    • EPPRegistryDomainContact

      public EPPRegistryDomainContact(EPPRegistryDomainContact.Type aType, Integer aMin, Integer aMax)
      Creates a new EPPRegistryDomainContact object that takes the types and both the minimum and maximum values as Integer's.
      Parameters:
      aType - type of contact
      aMin - minimum number of contact entries.
      aMax - maximum number of contact entries.
    • EPPRegistryDomainContact

      public EPPRegistryDomainContact(EPPRegistryDomainContact.Type aType, int aMin, int aMax)
      Creates a new EPPRegistryDomainContact object that takes the types and both the minimum and maximum values as int's.
      Parameters:
      aType - type of contact
      aMin - minimum number of contact entries.
      aMax - maximum number of contact entries.
  • Method Details