| Business Objects and Data Sources > States > Defining States in XML > SAN States |
SAN States |
INDEX
PREVIOUS
NEXT
|
The class IltObjectStateSAXInfo is the XML serialization class that allows you to read and write SAN states in the XML format.
The following table describes the XML elements that can be used.
<addObject id="NE1">
<class>ilog.tgo.model.IltNetworkElement</class>
<attribute name="position" javaClass="ilog.cpl.graphic.IlpPoint">
<x>68</x> <y>61</y>
</attribute>
<attribute name="objectState" javaClass="ilog.tgo.model.IltOSIObjectState">
<state>
<administrative>ShuttingDown</administrative>
<operational>Enabled</operational>
<usage>Active</usage>
</state>
<SAN state="Bandwidth" isArray="true" javaClass="java.lang.Integer">
<value>50</value>
<value>70</value>
<value>30</value>
</SAN>
</attribute>
</addObject>
The following example shows how to set SAN states to an object that already exists in the data source. You can achieve this by using the XML tag <updateObject> to modify the attribute objectState:
<updateObject id="NE1">
<attribute name="objectState" javaClass="ilog.tgo.model.IltBellcoreObjectState">
<state>EnabledActive</state>
<SAN state="Allocated">88</SAN>
</attribute>
</updateObject>
<updateObject id="NE1">
<updateState>
<SAN state="Allocated" operation="remove"/>
<SAN state="Fragmentation">75</SAN>
</updateState>
</updateObject>
| Copyright © 1987-2007 ILOG S.A. All rights reserved. Documentation homepage. All rights reserved. Legal terms. | PREVIOUS NEXT |