Package com.verisign.epp.codec.registry
Class EPPRegistryTransferHoldPeriodType
- java.lang.Object
-
- com.verisign.epp.codec.registry.EPPRegistryPeriodType
-
- com.verisign.epp.codec.registry.EPPRegistryTransferHoldPeriodType
-
- All Implemented Interfaces:
EPPCodecComponent
,java.io.Serializable
,java.lang.Cloneable
public class EPPRegistryTransferHoldPeriodType extends EPPRegistryPeriodType
Represents the period of time a domain object is in the pending transfer before the transfer is auto approved by the server. The <registry:transferHoldPeriod> element MUST have the "unit" attribute with the possible values of "y" for year, "m" for month, and "d" for day..- See Also:
EPPRegistryDomain
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ELM_NAME
XML Element Name ofEPPRegistryTransferHoldPeriodType
root element.-
Fields inherited from class com.verisign.epp.codec.registry.EPPRegistryPeriodType
number, PERIOD_UNIT_DAY, PERIOD_UNIT_HOUR, PERIOD_UNIT_MONTH, PERIOD_UNIT_YEAR, rootName, unit, VALID_UNITS
-
-
Constructor Summary
Constructors Constructor Description EPPRegistryTransferHoldPeriodType()
Default constructor.EPPRegistryTransferHoldPeriodType(int number, java.lang.String unit)
Construct an instance ofEPPRegistryTransferHoldPeriodType
withnumber
andunit
.EPPRegistryTransferHoldPeriodType(java.lang.Integer number, java.lang.String unit)
Construct an instance ofEPPRegistryTransferHoldPeriodType
withnumber
andunit
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object aObject)
Compare an instance ofEPPRegistryTransferHoldPeriodType
with this instance.java.lang.String
getNamespace()
Returns the XML namespace associated with theEPPCodecComponent
.-
Methods inherited from class com.verisign.epp.codec.registry.EPPRegistryPeriodType
clone, decode, encode, getNumber, getRootName, getUnit, setNumber, setUnit, toString
-
-
-
-
Field Detail
-
ELM_NAME
public static final java.lang.String ELM_NAME
XML Element Name ofEPPRegistryTransferHoldPeriodType
root element.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EPPRegistryTransferHoldPeriodType
public EPPRegistryTransferHoldPeriodType()
Default constructor. Must callEPPRegistryPeriodType.setNumber(Integer)
andEPPRegistryPeriodType.setUnit(String)
before calling theEPPRegistryPeriodType.encode(org.w3c.dom.Document)
method.
-
EPPRegistryTransferHoldPeriodType
public EPPRegistryTransferHoldPeriodType(java.lang.Integer number, java.lang.String unit)
Construct an instance ofEPPRegistryTransferHoldPeriodType
withnumber
andunit
.- Parameters:
number
- number must be > 0unit
- unit must be one of "y", "m" or "d"
-
EPPRegistryTransferHoldPeriodType
public EPPRegistryTransferHoldPeriodType(int number, java.lang.String unit)
Construct an instance ofEPPRegistryTransferHoldPeriodType
withnumber
andunit
.- Parameters:
number
- number must be > 0unit
- unit must be one of "y", "m" or "d"
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object aObject)
Compare an instance ofEPPRegistryTransferHoldPeriodType
with this instance.- Overrides:
equals
in classEPPRegistryPeriodType
- Parameters:
aObject
- Object to compare with.- Returns:
true
if equal;false
otherwise.
-
getNamespace
public java.lang.String getNamespace()
Returns the XML namespace associated with theEPPCodecComponent
.- Returns:
- XML namespace for the
EPPCodecComponent
.
-
-