Package com.highdeal.pnr.hci
Class ChargingProcessInfo
java.lang.Object
com.highdeal.hci.HCIModelAdapter
com.highdeal.pnr.hci.ChargingProcessInfo
- All Implemented Interfaces:
ITagNameProvider,IXMLMarshallable,XMLMarshallable
This
Java class contains information about the Charging process in the SAP CC system.
It contains:
- The unique identifier of the charged item set generated by the charging process
- The date when the event was processed
XML API for HCI
The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="chargingProcessInfo">
<xs:complexType>
<xs:sequence>
<xs:element ref="uid" minOccurs="1" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="eventProcessingDate" type="xs:date" use="required" />
</xs:complexType>
</xs:element>
-
Field Summary
Fields -
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.Gets the unique identifier of the charged item set generated by the charging process.Gets the date when the event was processed.Gets the XML tag name of the HCI model.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.voidsetChargedItemSetUniqueId(UniqueIdentifier chargedItemSetUniqueId) Sets the unique identifier of the charged item set generated by the charging process.voidsetEventProcessingDate(Date eventProcessingDate) Sets the date when the event was processed.Methods inherited from class com.highdeal.hci.HCIModelAdapter
marshal
-
Field Details
-
TAG_NAME
The XML tag name of this object: "chargingProcessInfo"- See Also:
-
-
Constructor Details
-
ChargingProcessInfo
public ChargingProcessInfo()Builds an empty information for recharging object.
-
-
Method Details
-
getChargedItemSetUniqueId
Gets the unique identifier of the charged item set generated by the charging process.- Returns:
- the unique identifier of the charged item set generated by the charging process
-
setChargedItemSetUniqueId
Sets the unique identifier of the charged item set generated by the charging process.- Parameters:
chargedItemSetUniqueId- The unique identifier of the charged item set generated by the charging process
-
getEventProcessingDate
Gets the date when the event was processed.- Returns:
- The date when the event was processed
-
setEventProcessingDate
Sets the date when the event was processed.- Parameters:
eventProcessingDate- The date the event was processed
-
getTagName
Description copied from interface:ITagNameProviderGets the XML tag name of the HCI model.- Returns:
- The XML tag name
-
addCharacterData
Description copied from interface:XMLMarshallableAdds character data to the content element.- Parameters:
cData- The character data to be added
-
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
-
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
-