public abstract class CommonRangeTableRevisionModel extends java.lang.Object implements IXMLMarshallable, XMLMapping
abstract Java class defines an abstract revision (period-based version) of a (subscriber) range table;
You use the known subclasses with the create and modify operations.
It contains rows with input and output columns or range sets with a range set key and ranges.
The range table class ID is:
RangeTableRowModel,
CommonRangeTableModel,
RangeTableRevisionModel,
SubscriberRangeTableRevisionModelThe XML APIs specify the following XSD fragment:
XSD Fragment
<xs:complexType name="CommonRangeTableRevisionType" abstract="true">
<xs:sequence>
<xs:element name="description" type="DescriptionType" minOccurs="0" maxOccurs="1" />
<xs:element name="additionalInfo" type="AdditionalInfoType" minOccurs="0" maxOccurs="unbounded" />
<xs:choice>
<xs:element name="rangeTableRow" type="RangeTableRowType" minOccurs="1" maxOccurs="unbounded" />
<xs:element name="rangeSet" type="RangeTableRangeSetType" minOccurs="1" maxOccurs="unbounded"/>
</xs:choice>
</xs:sequence>
<xs:attribute name="id" type="xs:string" />
<xs:attribute name="rangeTableClassId" type="xs:string" use="optional" />
</xs:complexType>
| Constructor and Description |
|---|
CommonRangeTableRevisionModel() |
| Modifier and Type | Method and Description |
|---|---|
void |
addCharacterData(java.lang.String CData)
Adds character data to the content element.
|
void |
addChild(java.lang.String tagName,
XMLMarshallable child)
Adds a child to the object, the
child representing
the marshallable object which must be added to the element. |
java.util.List<AdditionalInfoModel> |
getAdditionalInfoList()
Gets the list of information dedicated to external system.
|
java.lang.Class<?> |
getClass(java.lang.String nsUri,
java.lang.String tag,
XMLAttributes atts)
Returns the
Java class for a specified XML tag and its attributes in a namespace. |
java.lang.String |
getDescription()
Gets the description of the range table (or subscriber range table);
Allow a better understanding about this range table.
|
java.lang.String |
getId()
Gets the ID of the range table (or subscriber range table).
|
java.lang.String |
getRangeTableClassId()
Gets the range table class code used by this instance.
|
java.util.List<RangeTableRangeSetModel> |
getRangeTableRangeSetList()
Gets the list of
range sets defined in the range table (or subscriber range table). |
java.util.List<RangeTableRowModel> |
getRangeTableRowList()
Gets the list of
rows defined in the range table (or subscriber range table). |
void |
marshal(XMLOutputter output)
Deprecated.
|
void |
marshalAttributes(XMLOutputter output)
Gives an XML representation of the attributes of an object.
|
void |
marshalChildren(XMLOutputter output)
Gives an XML representation of the child objects of an object.
|
void |
setAdditionalInfoList(java.util.List<AdditionalInfoModel> additionalInfoList)
Sets the list of information dedicated to external system.
|
void |
setAttributes(XMLAttributes atts)
Sets the attributes of the XML representation of the element being
processed.
|
void |
setDescription(java.lang.String description)
Sets the description of the range table (or subscriber range table);
Allow a better understanding about this range table.
|
void |
setId(java.lang.String id)
Sets the ID of the range table (or subscriber range table).
|
void |
setRangeTableClassId(java.lang.String rangeTableClassId)
Sets the range table class code that contains the table scheme.
|
void |
setRangeTableRowList(java.util.List<RangeTableRowModel> rangeTableRowList)
Sets the list of
rows defined in the range table (or subscriber range table). |
public java.lang.String getId()
identifier of the tablepublic void setId(java.lang.String id)
id - The identifier to set to the tablepublic java.lang.String getRangeTableClassId()
RangeTableClassModelpublic void setRangeTableClassId(java.lang.String rangeTableClassId)
rangeTableClassId - The identifier of the range table class to usepublic java.lang.String getDescription()
public void setDescription(java.lang.String description)
description - The description of the tablepublic java.util.List<AdditionalInfoModel> getAdditionalInfoList()
search its specifics Range Table.
An additional information is a property defined by its name and its value.public void setAdditionalInfoList(java.util.List<AdditionalInfoModel> additionalInfoList)
search its specifics Range Table.
An additional information is a property defined by its name and its value.additionalInfoList - The list of information dedicated to external systempublic java.util.List<RangeTableRowModel> getRangeTableRowList()
rows defined in the range table (or subscriber range table).public void setRangeTableRowList(java.util.List<RangeTableRowModel> rangeTableRowList)
rows defined in the range table (or subscriber range table).rangeTableRowList - The list of rowspublic java.util.List<RangeTableRangeSetModel> getRangeTableRangeSetList()
range sets defined in the range table (or subscriber range table).public void addChild(java.lang.String tagName,
XMLMarshallable child)
XMLMarshallablechild representing
the marshallable object which must be added to the element.addChild in interface XMLMarshallabletagName - The name of tag for the childchild - The child to be addedpublic void setAttributes(XMLAttributes atts)
XMLMarshallablesetAttributes in interface XMLMarshallableatts - The XML attributes of the current elementpublic void addCharacterData(java.lang.String CData)
XMLMarshallableaddCharacterData in interface XMLMarshallableCData - The character data to be addedpublic void marshalAttributes(XMLOutputter output)
IXMLMarshallablemarshalAttributes in interface IXMLMarshallableoutput - The XML output to marshal the object attributes intopublic void marshalChildren(XMLOutputter output)
IXMLMarshallablemarshalChildren in interface IXMLMarshallableoutput - The XML output to marshal the child objects into@Deprecated public void marshal(XMLOutputter output)
XMLMarshallablemarshal in interface IXMLMarshallablemarshal in interface XMLMarshallableoutput - The XML output to marshal the object intopublic java.lang.Class<?> getClass(java.lang.String nsUri,
java.lang.String tag,
XMLAttributes atts)
XMLMappingJava class for a specified XML tag and its attributes in a namespace.getClass in interface XMLMappingnsUri - The unique resource identifier of the namespace of the XML tagtag - The local part of the XML tagatts - The attributes of the XML tagJava class with a default constructor