Package com.highdeal.mappingtable.hci
Class ModifyMappingTableClassResult
java.lang.Object
com.highdeal.hci.HCIModelAdapter
com.highdeal.hci.OperationResultAdapter
com.highdeal.mappingtable.hci.ModifyMappingTableClassResult
- All Implemented Interfaces:
ITagNameProvider,IXMLMarshallable,OperationResult,XMLMarshallable
This class represents the result of the
Modify Mapping Table Class operation;
It includes some identification information as the successful confirmation of the data configuration maintenance
in the back-end database system.
The operation result includes:
-
The unique system-generated reference for this data object. This reference is the Object ID (see fields
OID) in the database. -
The identifier (ID) of the mapping table class. It is visible in the user interfaces.
Operation Request
ModifyMappingTableClassOp XML API for HCI
The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="modifyMappingTableClassResult">
<xs:complexType>
<xs:attribute name="reference" type="xs:string" use="required" />
<xs:attribute name="id" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe XML tag name of this operation response: "modifyMappingTableClassResult" -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCharacterData(String cData) Adds character data to the content element.voidaddChild(String tagName, XMLMarshallable child) Adds a child to the object, thechildrepresenting the marshallable object which must be added to the element.getId()Returns the identifier (ID) of the modified mapping table class; This ID is visible in the user interfaces.Gets the code or the reference (if no code exists) that identifies the operand of the operation request; If the operation is not auditable, the operand reference isnull.Returns the reference of the modified mapping table class.Gets the XML tag name of theHCI operation result.voidmarshalAttributes(XMLOutputter output) Gives an XML representation of the attributes of an object.voidmarshalChildren(XMLOutputter output) Gives an XML representation of the child objects of an object.voidsetAttributes(XMLAttributes atts) Sets the attributes of the XML representation of the element being processed.voidSets the identifier for the mapping table class to modify.voidsetReference(String reference) Sets the reference of the modified mapping table class.Methods inherited from class com.highdeal.hci.HCIModelAdapter
marshal
-
Field Details
-
RESULT_NAME
The XML tag name of this operation response: "modifyMappingTableClassResult"- See Also:
-
-
Constructor Details
-
ModifyMappingTableClassResult
public ModifyMappingTableClassResult()
-
-
Method Details
-
getTagName
Description copied from class:OperationResultAdapterGets the XML tag name of theHCI operation result.- Specified by:
getTagNamein interfaceITagNameProvider- Specified by:
getTagNamein classOperationResultAdapter- Returns:
- The XML tag name
-
getReference
Returns the reference of the modified mapping table class.- Returns:
- The system-generated reference for the modified mapping table class
-
setReference
Sets the reference of the modified mapping table class.- Parameters:
reference- The system-generated reference for the modified mapping table class
-
getId
Returns the identifier (ID) of the modified mapping table class; This ID is visible in the user interfaces.- Returns:
- The identifier of the mapping table class that has been modified
-
setId
Sets the identifier for the mapping table class to modify.- Parameters:
mappingTableClassId- The identifier of the modified mapping table class
-
getOperandReference
Description copied from interface:OperationResultGets the code or the reference (if no code exists) that identifies the operand of the operation request; If the operation is not auditable, the operand reference isnull.- Returns:
- The operand reference of the operation result
-
setAttributes
Description copied from interface:XMLMarshallableSets the attributes of the XML representation of the element being processed.- Parameters:
atts- TheXML attributesof the current element
-
addChild
Description copied from interface:XMLMarshallableAdds a child to the object, thechildrepresenting the marshallable object which must be added to the element.- Parameters:
tagName- The name of tag for the childchild- The child to be added
-
addCharacterData
Description copied from interface:XMLMarshallableAdds character data to the content element.- Parameters:
cData- The character data to be added
-
marshalAttributes
Description copied from interface:IXMLMarshallableGives an XML representation of the attributes of an object.- Parameters:
output- TheXML outputto marshal the object attributes into
-
marshalChildren
Description copied from interface:IXMLMarshallableGives an XML representation of the child objects of an object.- Parameters:
output- TheXML outputto marshal the child objects into
-