Package com.verisign.epp.codec.registry
Class EPPRegistryFields
- java.lang.Object
-
- com.verisign.epp.codec.registry.EPPRegistryFields
-
- All Implemented Interfaces:
EPPCodecComponent,java.io.Serializable,java.lang.Cloneable
public class EPPRegistryFields extends java.lang.Object implements EPPCodecComponent
Class that defines the management of related fields.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringATTR_TYPERequired attribute type name that should have a value of eitherTYPE_SHAREDorTYPE_SYNC.static java.lang.StringELM_LOCALNAMEConstant for the phase local namestatic java.lang.StringELM_NAMEConstant for the qualified name (prefix and local name)static java.lang.StringTYPE_SHAREDConstant for the related zone fields being shared, where there is one set of related fields.static java.lang.StringTYPE_SYNCConstant for the related zone fields required to be synchronized by registry policy.
-
Constructor Summary
Constructors Constructor Description EPPRegistryFields()Default constructor.EPPRegistryFields(java.lang.String aType, java.util.List<java.lang.String> aFields)CreateEPPRegistryFieldsinstance with required attributes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddField(java.lang.String aField)Adds a field to the list of fields.java.lang.Objectclone()CloneEPPRegistryFields.voiddecode(org.w3c.dom.Element aElement)Decode theEPPRegistryFieldselement aElement DOM Element tree.org.w3c.dom.Elementencode(org.w3c.dom.Document aDocument)Encode a DOM Element tree from the attributes of theEPPRegistryFieldsinstance.booleanequals(java.lang.Object aObject)implements a deepEPPRegistryFieldscompare.java.util.List<java.lang.String>getFields()Gets the related field names.java.lang.StringgetNamespace()Returns the XML namespace associated with theEPPCodecComponent.java.lang.StringgetType()Gets the related fields type, which should be eitherTYPE_SHAREDorTYPE_SYNC.voidsetFields(java.util.List<java.lang.String> aFields)Sets the related field names.voidsetType(java.lang.String aType)Sets the related fields type, which should be eitherTYPE_SHAREDorTYPE_SYNC.java.lang.StringtoString()Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.
-
-
-
Field Detail
-
TYPE_SHARED
public static final java.lang.String TYPE_SHARED
Constant for the related zone fields being shared, where there is one set of related fields. Updating a field in one related zone results in updating the field value across all of the related zones.- See Also:
- Constant Field Values
-
TYPE_SYNC
public static final java.lang.String TYPE_SYNC
Constant for the related zone fields required to be synchronized by registry policy. Updating a field in one related zone does not result in updating the field across all of the related zones.- See Also:
- Constant Field Values
-
ELM_LOCALNAME
public static final java.lang.String ELM_LOCALNAME
Constant for the phase local name- See Also:
- Constant Field Values
-
ELM_NAME
public static final java.lang.String ELM_NAME
Constant for the qualified name (prefix and local name)- See Also:
- Constant Field Values
-
ATTR_TYPE
public static final java.lang.String ATTR_TYPE
Required attribute type name that should have a value of eitherTYPE_SHAREDorTYPE_SYNC.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EPPRegistryFields
public EPPRegistryFields()
Default constructor. The type value MUST be set using thesetType(String)method and the fields MUST be set usingsetFields(List)oraddField(String).
-
EPPRegistryFields
public EPPRegistryFields(java.lang.String aType, java.util.List<java.lang.String> aFields)CreateEPPRegistryFieldsinstance with required attributes.- Parameters:
aType- Type of related fields with eitherTYPE_SHAREDorTYPE_SYNC.aFields- List of related fields.
-
-
Method Detail
-
getType
public java.lang.String getType()
Gets the related fields type, which should be eitherTYPE_SHAREDorTYPE_SYNC.- Returns:
TYPE_SHAREDorTYPE_SYNCif defined;nullotherwise.
-
setType
public void setType(java.lang.String aType)
Sets the related fields type, which should be eitherTYPE_SHAREDorTYPE_SYNC.- Parameters:
aType- the type, which should be eitherTYPE_SHAREDorTYPE_SYNC
-
getFields
public java.util.List<java.lang.String> getFields()
Gets the related field names.- Returns:
- List of related field names.
-
setFields
public void setFields(java.util.List<java.lang.String> aFields)
Sets the related field names.- Parameters:
aFields- The list of related field names.
-
addField
public void addField(java.lang.String aField)
Adds a field to the list of fields.- Parameters:
aField- Field to add to the list of fields.
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionCloneEPPRegistryFields.- Specified by:
clonein interfaceEPPCodecComponent- Overrides:
clonein classjava.lang.Object- Returns:
- clone of
EPPRegistryFields - Throws:
java.lang.CloneNotSupportedException- standard Object.clone exception
-
decode
public void decode(org.w3c.dom.Element aElement) throws EPPDecodeExceptionDecode theEPPRegistryFieldselement aElement DOM Element tree.- Specified by:
decodein interfaceEPPCodecComponent- Parameters:
aElement- - Root DOM Element to decodeEPPRegistryFieldsfrom.- Throws:
EPPDecodeException- Unable to decode aElement
-
encode
public org.w3c.dom.Element encode(org.w3c.dom.Document aDocument) throws EPPEncodeExceptionEncode a DOM Element tree from the attributes of theEPPRegistryFieldsinstance.- Specified by:
encodein interfaceEPPCodecComponent- Parameters:
aDocument- - DOM Document that is being built. Used as an Element factory.- Returns:
- Element - Root DOM Element representing the
EPPRegistryFieldsinstance. - Throws:
EPPEncodeException- - Unable to encodeEPPRegistryFieldsinstance.
-
equals
public boolean equals(java.lang.Object aObject)
implements a deepEPPRegistryFieldscompare.- Overrides:
equalsin classjava.lang.Object- Parameters:
aObject-EPPRegistryFieldsinstance to compare with- Returns:
trueif equal;falseotherwise
-
toString
public java.lang.String toString()
Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.- Overrides:
toStringin classjava.lang.Object- Returns:
- Indented XML
Stringif successful;ERRORotherwise.
-
getNamespace
public java.lang.String getNamespace()
Returns the XML namespace associated with theEPPCodecComponent.- Specified by:
getNamespacein interfaceEPPCodecComponent- Returns:
- XML namespace for the
EPPCodecComponent.
-
-