Package com.verisign.epp.codec.gen
Class EPPCommand
- java.lang.Object
-
- com.verisign.epp.codec.gen.EPPCommand
-
- All Implemented Interfaces:
EPPCodecComponent,EPPMessage,java.io.Serializable,java.lang.Cloneable
- Direct Known Subclasses:
EPPCheckCmd,EPPCreateCmd,EPPDeleteCmd,EPPInfoCmd,EPPLoginCmd,EPPLogoutCmd,EPPPollCmd,EPPRenewCmd,EPPTransferCmd,EPPUpdateCmd
public abstract class EPPCommand extends java.lang.Object implements EPPMessage
Represents an EPP command that is sent by an EPP Client and received by an EPP Server. AnEPPCommandcan be encoded and decoded byEPPCodec.
Every EPP command must extendEPPCommandand implement the Template Method Design PatterndoGenEncodeanddoGenDecodemethods. AnEPPCommandclient will callencodeordecode, which in turn will calldoGenEncodeordoGenDecode, respectively. There is one derivedEPPCommandfor each type of command defined in the general EPP Specification.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Vector<EPPCodecComponent>extensionsExtension objects associated with the command.static java.lang.StringOP_APPROVEcommand approve operation currently associated with a <transfer> command.static java.lang.StringOP_CANCELcommand cancel operation associated with a <transfer> command.static java.lang.StringOP_QUERYcommand query operation associated with a <transfer> command.static java.lang.StringOP_REJECTcommand reject operation associated with a <transfer> command.static java.lang.StringOP_REQUESTcommand request operation associated with a <transfer> command.protected java.lang.StringtransIdClient Transaction id associated with the commandstatic java.lang.StringTYPE_CHECKcommand type associated with the general EPP <check> command.static java.lang.StringTYPE_CREATEcommand type associated with the general EPP <create> command.static java.lang.StringTYPE_DELETEcommand type associated with the general EPP <delete> command.static java.lang.StringTYPE_INFOcommand type associated with the general EPP <info> command.static java.lang.StringTYPE_LOGINcommand type associated with the general EPP <login> command.static java.lang.StringTYPE_LOGOUTcommand type associated with the general EPP <logout> command.static java.lang.StringTYPE_POLLcommand type associated with the general EPP <poll> command.static java.lang.StringTYPE_RENEWcommand type associated with the general EPP <renew> command.static java.lang.StringTYPE_TRANSFERcommand type associated with the general EPP <transfer> command.static java.lang.StringTYPE_UPDATEcommand type associated with the general EPP <update> command.
-
Constructor Summary
Constructors Constructor Description EPPCommand()Allocates a newEPPCommandwith default attribute values.EPPCommand(java.lang.String aTransId)Allocates a newEPPCommandsetting the client transaction id.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddExtension(EPPCodecComponent aExtension)Adds a command extension object.java.lang.Objectclone()CloneEPPCommand.voiddecode(org.w3c.dom.Element aElement)decodeEPPCommandfrom a DOM element tree.protected abstract voiddoGenDecode(org.w3c.dom.Element aElement)Decodes the atributes of a general extension ofEPPCommand.protected abstract org.w3c.dom.ElementdoGenEncode(org.w3c.dom.Document aDocument)Encodes the atributes of a general extension ofEPPCommand.org.w3c.dom.Elementencode(org.w3c.dom.Document aDocument)encodeEPPCommandinto a DOM element tree.booleanequals(java.lang.Object aObject)implements a deepEPPCommandcompare.java.util.Set<java.lang.String>findDuplicateExtNamespaces()Find the set of duplicate EPP extension XML namespaces based on the list of EPP extensions set in the command.java.util.Set<java.lang.String>findExtNamespaces(java.util.List<java.lang.String> aFilterExtNamespaces)Find the set of unique EPP extension XML namespaces based on the list of EPP extensions set in the command.java.util.Set<java.lang.String>findExtNamespaceSuffixes(java.util.List<java.lang.String> aFilterExtNamespaceSuffixes)Find the set of unique EPP extension XML namespace suffixes based on the list of EPP extensions set in the command and the optional use of a list of XML namespace suffixes to filter.java.util.Set<java.lang.String>findUnsupportedExtNamespaces(java.util.List<java.lang.String> aSupportedExtNamespaces)Find the set of unsupported EPP extension XML namespaces based the passed in supported extension XML namespaces and on the list of EPP extensions set in the command.java.util.Set<java.lang.String>findUnsupportedExtNamespaceSuffixes(java.util.List<java.lang.String> aSupportedExtNamespaceSuffixes)Find the set of unsupported EPP extensions based on passing the list of supported extension XML namespace suffixes and the list of EPP extensions set in the command.EPPCodecComponentgetExtension(java.lang.Class aExtensionClass)Gets the command extension object with the specified class.EPPCodecComponentgetExtension(java.lang.Class aExtensionClass, boolean aFailOnDuplicate)Gets the command extension object with the specified class with the option to fail when a duplicate extension is found.java.util.Vector<EPPCodecComponent>getExtensions()Gets the command extensions.java.lang.StringgetKey()Gets the key of the command object.abstract java.lang.StringgetNamespace()Gets the EPP namespace associated with theEPPCommand.java.lang.StringgetOp()Gets the string operation of the concreteEPPCommand.java.lang.StringgetTransId()Gets the Client Transaction Id associated with theEPPCommand.abstract java.lang.StringgetType()Gets command type of theEPPCommand.booleanhasExtension(java.lang.Class aExtensionClass)Does the command have a command extension object of a specified class? If so, the command extension object can be retrieved with a call togetExtensions(Class).booleanhasExtensions()Does the command have a command extension objects? If so, the command extension objects can be retrieved with a call togetExtensions.booleanhasKey()Has the key been set?booleanhasTransId()Does the command have a client transaction id? If so, the transaction id can be retrieved with a call togetTransId.voidsetExtension(EPPCodecComponent aExtension)Deprecated.Replaced byaddExtension(EPPCodecComponent).voidsetExtensions(java.util.Vector<EPPCodecComponent> aExtensions)Sets the command extension objects.voidsetTransId(java.lang.String aTransId)Sets the Client Transaction Id associated with the EPPCommand.java.lang.StringtoString()Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.
-
-
-
Field Detail
-
TYPE_LOGIN
public static final java.lang.String TYPE_LOGIN
command type associated with the general EPP <login> command.- See Also:
- Constant Field Values
-
TYPE_LOGOUT
public static final java.lang.String TYPE_LOGOUT
command type associated with the general EPP <logout> command.- See Also:
- Constant Field Values
-
TYPE_INFO
public static final java.lang.String TYPE_INFO
command type associated with the general EPP <info> command.- See Also:
- Constant Field Values
-
TYPE_CHECK
public static final java.lang.String TYPE_CHECK
command type associated with the general EPP <check> command.- See Also:
- Constant Field Values
-
TYPE_TRANSFER
public static final java.lang.String TYPE_TRANSFER
command type associated with the general EPP <transfer> command.- See Also:
- Constant Field Values
-
TYPE_CREATE
public static final java.lang.String TYPE_CREATE
command type associated with the general EPP <create> command.- See Also:
- Constant Field Values
-
TYPE_DELETE
public static final java.lang.String TYPE_DELETE
command type associated with the general EPP <delete> command.- See Also:
- Constant Field Values
-
TYPE_RENEW
public static final java.lang.String TYPE_RENEW
command type associated with the general EPP <renew> command.- See Also:
- Constant Field Values
-
TYPE_UPDATE
public static final java.lang.String TYPE_UPDATE
command type associated with the general EPP <update> command.- See Also:
- Constant Field Values
-
TYPE_POLL
public static final java.lang.String TYPE_POLL
command type associated with the general EPP <poll> command.- See Also:
- Constant Field Values
-
OP_APPROVE
public static final java.lang.String OP_APPROVE
command approve operation currently associated with a <transfer> command.- See Also:
- Constant Field Values
-
OP_CANCEL
public static final java.lang.String OP_CANCEL
command cancel operation associated with a <transfer> command.- See Also:
- Constant Field Values
-
OP_QUERY
public static final java.lang.String OP_QUERY
command query operation associated with a <transfer> command.- See Also:
- Constant Field Values
-
OP_REJECT
public static final java.lang.String OP_REJECT
command reject operation associated with a <transfer> command.- See Also:
- Constant Field Values
-
OP_REQUEST
public static final java.lang.String OP_REQUEST
command request operation associated with a <transfer> command.- See Also:
- Constant Field Values
-
transId
protected java.lang.String transId
Client Transaction id associated with the command
-
extensions
protected java.util.Vector<EPPCodecComponent> extensions
Extension objects associated with the command. The extension object is associated with a unique XML Namespace, XML Schema, and can be any simple or complex object that implements theEPPCodecComponentinterface.
-
-
Constructor Detail
-
EPPCommand
public EPPCommand()
Allocates a newEPPCommandwith default attribute values. The defaults include the following:
- transaction id is set to
null. This attribute can be set usingsetTransIdbefore invokingencode.
- transaction id is set to
-
EPPCommand
public EPPCommand(java.lang.String aTransId)
Allocates a newEPPCommandsetting the client transaction id.- Parameters:
aTransId- Client Transaction id associated with the command.
-
-
Method Detail
-
hasTransId
public boolean hasTransId()
Does the command have a client transaction id? If so, the transaction id can be retrieved with a call togetTransId.- Returns:
trueif this is a transaction id;falseotherwise.
-
getTransId
public java.lang.String getTransId()
Gets the Client Transaction Id associated with theEPPCommand.- Returns:
Stringinstance if defined; null otherwise.
-
setTransId
public void setTransId(java.lang.String aTransId)
Sets the Client Transaction Id associated with the EPPCommand.- Parameters:
aTransId- Client Transaction IdString
-
getNamespace
public abstract java.lang.String getNamespace()
Gets the EPP namespace associated with theEPPCommand.- Specified by:
getNamespacein interfaceEPPCodecComponent- Specified by:
getNamespacein interfaceEPPMessage- Returns:
- Namespace URI associated with the
EPPCommand.
-
getType
public abstract java.lang.String getType()
Gets command type of theEPPCommand. Each command is associated with a single command type equal to one of theEPPCommand.TYPE_constants and optionally a command operation equal to one of theEPPCommand.OP_constants.- Returns:
- Command type
String(EPPCommand.TYPE_)
-
getOp
public java.lang.String getOp()
Gets the string operation of the concreteEPPCommand. The type should be equal to one of theEPPCommand.OP_constants, or null if there is no operation.- Returns:
- Operation of concrete EPPCommand if exists; null otherwise.
-
hasKey
public boolean hasKey()
Has the key been set?- Returns:
trueif the key has been set;falseotherwise.
-
getKey
public java.lang.String getKey()
Gets the key of the command object. The key is used for lookup of the existing object, such as the domain name for the domain name object or the contact identifier for the contact object. The concrete commands that have a key need to override this method.- Returns:
- The command object key if defined;
nullotherwise
-
hasExtension
public boolean hasExtension(java.lang.Class aExtensionClass)
Does the command have a command extension object of a specified class? If so, the command extension object can be retrieved with a call togetExtensions(Class).- Parameters:
aExtensionClass- Command extension class- Returns:
trueif the extension object exists;falseotherwise.
-
getExtension
public EPPCodecComponent getExtension(java.lang.Class aExtensionClass)
Gets the command extension object with the specified class. The extension object is an unspecified element in the EPP Specifications. To create an extension object, an XML Schema for the extension object must exist with a unique XML Namespace. A customEPPExtensionFactorymust be created for the extension, which returns an instance ofEPPCodecComponentfor an instance of an extension object in the EPP Command.- Parameters:
aExtensionClass- of desired extension- Returns:
- Concrete
EPPCodecComponentassociated with the command if exists;nullotherwise.
-
getExtension
public EPPCodecComponent getExtension(java.lang.Class aExtensionClass, boolean aFailOnDuplicate) throws EPPDuplicateExtensionException
Gets the command extension object with the specified class with the option to fail when a duplicate extension is found. The extension object is an unspecified element in the EPP Specifications. To create an extension object, an XML Schema for the extension object must exist with a unique XML Namespace. A customEPPExtensionFactorymust be created for the extension, which returns an instance ofEPPCodecComponentfor an instance of an extension object in theEPPCommand.- Parameters:
aExtensionClass-Classof desired extensionaFailOnDuplicate- ThrowEPPDuplicateExtensionExceptioniftrueand a duplicate extension is found- Returns:
- Concrete
EPPCodecComponentassociated with the command if exists;nullotherwise. - Throws:
EPPDuplicateExtensionException- If a duplicate extension is found with the extension included in the extension
-
setExtension
@Deprecated public void setExtension(EPPCodecComponent aExtension)
Deprecated.Replaced byaddExtension(EPPCodecComponent). This method will add the extension as is done inaddExtension(EPPCodecComponent).Sets a command extension object. The extension object is an unspecified element in the EPP Specifications. The unspecified element will be encoded under the <unspec> element of the EPP Command.- Parameters:
aExtension- command extension object associated with the command
-
addExtension
public void addExtension(EPPCodecComponent aExtension)
Adds a command extension object. The extension object is an unspecified element in the EPP Specifications. The unspecified element will be encoded under the <unspec> element of the EPP Command.- Parameters:
aExtension- command extension object associated with the command
-
hasExtensions
public boolean hasExtensions()
Does the command have a command extension objects? If so, the command extension objects can be retrieved with a call togetExtensions.- Returns:
trueif there are extension objects;falseotherwise.
-
getExtensions
public java.util.Vector<EPPCodecComponent> getExtensions()
Gets the command extensions. The extension objects are an unspecified elements in the EPP Specification. To create an extension object, an XML Schema for the extension object must exist with a unique XML Namespace. A customEPPExtensionFactorymust be created for the extension, which returns an instance ofEPPCodecComponentfor an instance of an extension object in the EPP Command.- Returns:
Vectorof concreteEPPCodecComponentassociated with the command if exists;nullotherwise.
-
setExtensions
public void setExtensions(java.util.Vector<EPPCodecComponent> aExtensions)
Sets the command extension objects. The extension objects are an unspecified element in the EPP Specifications. The unspecified element will be encoded under the <unspec> element of the EPP Command.- Parameters:
aExtensions- command extension objects associated with the command
-
findDuplicateExtNamespaces
public java.util.Set<java.lang.String> findDuplicateExtNamespaces()
Find the set of duplicate EPP extension XML namespaces based on the list of EPP extensions set in the command.- Returns:
Setof duplicate EPP extension XML namespaces;nullotherwise.
-
findUnsupportedExtNamespaces
public java.util.Set<java.lang.String> findUnsupportedExtNamespaces(java.util.List<java.lang.String> aSupportedExtNamespaces)
Find the set of unsupported EPP extension XML namespaces based the passed in supported extension XML namespaces and on the list of EPP extensions set in the command.- Parameters:
aSupportedExtNamespaces- List of EPP extensions to scan for unsupported XML namespaces. Passnullfor no supported extensions.- Returns:
Setof unsupported EPP extension XML namespaces;nullotherwise.
-
findUnsupportedExtNamespaceSuffixes
public java.util.Set<java.lang.String> findUnsupportedExtNamespaceSuffixes(java.util.List<java.lang.String> aSupportedExtNamespaceSuffixes)
Find the set of unsupported EPP extensions based on passing the list of supported extension XML namespace suffixes and the list of EPP extensions set in the command.- Parameters:
aSupportedExtNamespaceSuffixes- List of EPP extensions to scan for unsupported XML namespace suffixes. Passnullfor no supported extensions.- Returns:
Setof unsupported EPP extension XML namespace suffixes;nullotherwise.
-
findExtNamespaces
public java.util.Set<java.lang.String> findExtNamespaces(java.util.List<java.lang.String> aFilterExtNamespaces)
Find the set of unique EPP extension XML namespaces based on the list of EPP extensions set in the command.- Parameters:
aFilterExtNamespaces- Filter extension namespaces from the returned set. Set tonullfor no filtering.- Returns:
Setof unique EPP extension XML namespaces.
-
findExtNamespaceSuffixes
public java.util.Set<java.lang.String> findExtNamespaceSuffixes(java.util.List<java.lang.String> aFilterExtNamespaceSuffixes)
Find the set of unique EPP extension XML namespace suffixes based on the list of EPP extensions set in the command and the optional use of a list of XML namespace suffixes to filter.- Parameters:
aFilterExtNamespaceSuffixes- Filter extension namespace suffixes from the returned set. Set tonullfor no filtering.- Returns:
Setof unique EPP extension XML namespace suffixes.
-
encode
public org.w3c.dom.Element encode(org.w3c.dom.Document aDocument) throws EPPEncodeExceptionencodeEPPCommandinto a DOM element tree. The <command> element is created and the attribute nodes are appending as children. This method is a Template Method in the Template Method Design Pattern.- Specified by:
encodein interfaceEPPCodecComponent- Parameters:
aDocument- DOCUMENT ME!- Returns:
- <command> root element tree.
- Throws:
EPPEncodeException- Error encoding the DOM element tree.
-
decode
public void decode(org.w3c.dom.Element aElement) throws EPPDecodeException, EPPComponentNotFoundExceptiondecodeEPPCommandfrom a DOM element tree. The "command" element needs to be the value of theaElementargument. This method is a Template Method in the Template Method Design Pattern.- Specified by:
decodein interfaceEPPCodecComponent- Parameters:
aElement- <command> root element tree.- Throws:
EPPDecodeException- Error decoding the DOM element tree.EPPComponentNotFoundException- An extension component could not be found
-
equals
public boolean equals(java.lang.Object aObject)
implements a deepEPPCommandcompare.- Overrides:
equalsin classjava.lang.Object- Parameters:
aObject-EPPCommandinstance to compare with- Returns:
- DOCUMENT ME!
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionCloneEPPCommand.- Specified by:
clonein interfaceEPPCodecComponent- Overrides:
clonein classjava.lang.Object- Returns:
- clone of
EPPCommand - Throws:
java.lang.CloneNotSupportedException- standard Object.clone exception
-
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.
-
doGenEncode
protected abstract org.w3c.dom.Element doGenEncode(org.w3c.dom.Document aDocument) throws EPPEncodeExceptionEncodes the atributes of a general extension ofEPPCommand. An example of a general extension isEPPCreateCmd.encodeis a Template Method and this method is a Primitive Operation within the Template Method Design Pattern.- Parameters:
aDocument- DOM document used as a factory of DOM objects.- Returns:
- instance root DOM element along with attribute child nodes.
- Throws:
EPPEncodeException- Error encoding the DOM element tree.
-
doGenDecode
protected abstract void doGenDecode(org.w3c.dom.Element aElement) throws EPPDecodeExceptionDecodes the atributes of a general extension ofEPPCommand. An example of a general extension isEPPCreateCmd.decodeis a Template Method and this method is a Primitive Operation within the Template Method Design Pattern.- Parameters:
aElement- root DOM element associated with instance- Throws:
EPPDecodeException- Error decoding the DOM element tree.
-
-