public class EPPRegistryFields extends java.lang.Object implements EPPCodecComponent
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ATTR_TYPE
Required attribute type name that should have a value of either
TYPE_SHARED or TYPE_SYNC . |
static java.lang.String |
ELM_LOCALNAME
Constant for the phase local name
|
static java.lang.String |
ELM_NAME
Constant for the qualified name (prefix and local name)
|
static java.lang.String |
TYPE_SHARED
Constant for the related zone fields being shared, where there is one set
of related fields.
|
static java.lang.String |
TYPE_SYNC
Constant for the related zone fields required to be synchronized by
registry policy.
|
Constructor and Description |
---|
EPPRegistryFields()
Default constructor.
|
EPPRegistryFields(java.lang.String aType,
java.util.List<java.lang.String> aFields)
Create
EPPRegistryFields instance with required attributes. |
Modifier and Type | Method and Description |
---|---|
void |
addField(java.lang.String aField)
Adds a field to the list of fields.
|
java.lang.Object |
clone()
Clone
EPPRegistryFields . |
void |
decode(org.w3c.dom.Element aElement)
Decode the
EPPRegistryFields element aElement DOM Element
tree. |
org.w3c.dom.Element |
encode(org.w3c.dom.Document aDocument)
Encode a DOM Element tree from the attributes of the
EPPRegistryFields instance. |
boolean |
equals(java.lang.Object aObject)
implements a deep
EPPRegistryFields compare. |
java.util.List<java.lang.String> |
getFields()
Gets the related field names.
|
java.lang.String |
getNamespace()
Returns the XML namespace associated with the
EPPCodecComponent . |
java.lang.String |
getType()
Gets the related fields type, which should be either
TYPE_SHARED
or TYPE_SYNC . |
void |
setFields(java.util.List<java.lang.String> aFields)
Sets the related field names.
|
void |
setType(java.lang.String aType)
Sets the related fields type, which should be either
TYPE_SHARED
or TYPE_SYNC . |
java.lang.String |
toString()
Implementation of
Object.toString , which will result in an
indented XML String representation of the concrete
EPPCodecComponent . |
public static final java.lang.String TYPE_SHARED
public static final java.lang.String TYPE_SYNC
public static final java.lang.String ELM_LOCALNAME
public static final java.lang.String ELM_NAME
public static final java.lang.String ATTR_TYPE
TYPE_SHARED
or TYPE_SYNC
.public EPPRegistryFields()
setType(String)
method and the fields MUST be set using
setFields(List)
or
addField(String)
.public EPPRegistryFields(java.lang.String aType, java.util.List<java.lang.String> aFields)
EPPRegistryFields
instance with required attributes.aType
- Type of related fields with either TYPE_SHARED
or
TYPE_SYNC
.aFields
- List of related fields.public java.lang.String getType()
TYPE_SHARED
or TYPE_SYNC
.TYPE_SHARED
or TYPE_SYNC
if defined;
null
otherwise.public void setType(java.lang.String aType)
TYPE_SHARED
or TYPE_SYNC
.aType
- the type, which should be either TYPE_SHARED
or
TYPE_SYNC
public java.util.List<java.lang.String> getFields()
public void setFields(java.util.List<java.lang.String> aFields)
aFields
- The list of related field names.public void addField(java.lang.String aField)
aField
- Field to add to the list of fields.public java.lang.Object clone() throws java.lang.CloneNotSupportedException
EPPRegistryFields
.clone
in interface EPPCodecComponent
clone
in class java.lang.Object
EPPRegistryFields
java.lang.CloneNotSupportedException
- standard Object.clone exceptionpublic void decode(org.w3c.dom.Element aElement) throws EPPDecodeException
EPPRegistryFields
element aElement DOM Element
tree.decode
in interface EPPCodecComponent
aElement
- - Root DOM Element to decode EPPRegistryFields
from.EPPDecodeException
- Unable to decode aElementpublic org.w3c.dom.Element encode(org.w3c.dom.Document aDocument) throws EPPEncodeException
EPPRegistryFields
instance.encode
in interface EPPCodecComponent
aDocument
- - DOM Document that is being built. Used as an Element
factory.EPPRegistryFields
instance.EPPEncodeException
- - Unable to encode EPPRegistryFields
instance.public boolean equals(java.lang.Object aObject)
EPPRegistryFields
compare.equals
in class java.lang.Object
aObject
- EPPRegistryFields
instance to compare withtrue
if equal; false
otherwisepublic java.lang.String toString()
Object.toString
, which will result in an
indented XML String
representation of the concrete
EPPCodecComponent
.toString
in class java.lang.Object
String
if successful;
ERROR
otherwise.public java.lang.String getNamespace()
EPPCodecComponent
.getNamespace
in interface EPPCodecComponent
EPPCodecComponent
.