Class MaintainSubscriberMappingTableRowResult

java.lang.Object
com.highdeal.hci.HCIModelAdapter
com.highdeal.hci.OperationResultAdapter
com.highdeal.mappingtable.hci.MaintainSubscriberMappingTableRowResult
All Implemented Interfaces:
ITagNameProvider, IXMLMarshallable, OperationResult, XMLMarshallable

public class MaintainSubscriberMappingTableRowResult extends OperationResultAdapter
This class represents the result of the Maintain Subscriber Mapping Table Row operation.

It is composed of the:

  • Subscriber Mapping Table code
  • unique identifier of the maintain operation

Operation Request

MaintainSubscriberMappingTableRowOp

XML API for HCI

The XML APIs specify the following XSD fragment:

XSD Fragment

<xs:element name="maintainSubscriberMappingTableRowResult">
  <xs:complexType>
     <xs:attribute name="reference" type="xs:string" use="required" />
     <xs:attribute name="subscriberMappingTableId" type="xs:string" use="required" />
  </xs:complexType>
 </xs:element>

  • Field Details

    • RESULT_NAME

      public static final String RESULT_NAME
      The value of this constant represents the XML tag of the result of the maintain operation of a SubscriberMappingTable
      See Also:
  • Constructor Details

    • MaintainSubscriberMappingTableRowResult

      public MaintainSubscriberMappingTableRowResult()
  • Method Details

    • getTagName

      public String getTagName()
      Description copied from class: OperationResultAdapter
      Gets the XML tag name of the HCI operation result.
      Specified by:
      getTagName in interface ITagNameProvider
      Specified by:
      getTagName in class OperationResultAdapter
      Returns:
      The XML tag name
    • getOperandReference

      public String getOperandReference()
      Description copied from interface: OperationResult
      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 is null.
      Returns:
      The operand reference of the operation result
    • getSubscriberMappingTableId

      public String getSubscriberMappingTableId()
      Gets the Subscriber Mapping Table identifier that owns the maintained rows.
      Returns:
      The identifier of the modified Subscriber Mapping Table that contains the maintained rows.
    • setSubscriberMappingTableId

      public void setSubscriberMappingTableId(String subscriberMappingTableId)
      Sets the identifier of the modified Subscriber Mapping Table that contains all the maintained rows.
      Parameters:
      subscriberMappingTableId - The identifier of the modified Subscriber Mapping Table that owns the row maintained.
    • getReference

      public String getReference()
      Gets the reference which is the unique identifier defined by the persistence layer Mapping Table.
      Returns:
      the reference which is the unique identifier defined by the persistence layer Mapping Table.
    • setReference

      public void setReference(String reference)
      Sets the reference which is the unique identifier defined by the persistence layer Mapping Table.
      Parameters:
      reference - the reference which is the unique identifier defined by the persistence layer Mapping Table.
    • setAttributes

      public void setAttributes(XMLAttributes atts)
      Description copied from interface: XMLMarshallable
      Sets the attributes of the XML representation of the element being processed.
      Parameters:
      atts - The XML attributes of the current element
    • addChild

      public void addChild(String tagName, XMLMarshallable child)
      Description copied from interface: XMLMarshallable
      Adds a child to the object, the child representing the marshallable object which must be added to the element.
      Parameters:
      tagName - The name of tag for the child
      child - The child to be added
    • addCharacterData

      public void addCharacterData(String cData)
      Description copied from interface: XMLMarshallable
      Adds character data to the content element.
      Parameters:
      cData - The character data to be added
    • marshalAttributes

      public void marshalAttributes(XMLOutputter output)
      Description copied from interface: IXMLMarshallable
      Gives an XML representation of the attributes of an object.
      Parameters:
      output - The XML output to marshal the object attributes into
    • marshalChildren

      public void marshalChildren(XMLOutputter output)
      Description copied from interface: IXMLMarshallable
      Gives an XML representation of the child objects of an object.
      Parameters:
      output - The XML output to marshal the child objects into