diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-10-01 21:09:23 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-10-01 21:09:23 +0200 |
| commit | c16b6242d9128dacbffb9a0360aafc6d2fade76b (patch) | |
| tree | d3e8ae78037c78bdf6f81f26b994b87a781591ca /src | |
| parent | 9c5d6e82b5ce733cf23e4317e3bafaa42c2221ba (diff) | |
Schemas for init props stored during Item.initialize()
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/resources/boot/OD/ItemInitialization.xsd | 25 | ||||
| -rw-r--r-- | src/main/resources/boot/allbootitems.txt | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/main/resources/boot/OD/ItemInitialization.xsd b/src/main/resources/boot/OD/ItemInitialization.xsd new file mode 100644 index 0000000..2ea4033 --- /dev/null +++ b/src/main/resources/boot/OD/ItemInitialization.xsd @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified"> + <xs:element name="PropertyList"> + <xs:complexType> + <xs:sequence> + <xs:element name="Property" minOccurs="0" + maxOccurs="unbounded"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute name="name" + type="xs:string"> + </xs:attribute> + <xs:attribute name="mutable" + type="xs:boolean"> + </xs:attribute> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> +</xs:schema>
\ No newline at end of file diff --git a/src/main/resources/boot/allbootitems.txt b/src/main/resources/boot/allbootitems.txt index 05fc950..64278d4 100644 --- a/src/main/resources/boot/allbootitems.txt +++ b/src/main/resources/boot/allbootitems.txt @@ -13,6 +13,7 @@ OD/Schema OD/Script
OD/Errors
OD/StateMachine
+OD/ItemInitialization
EA/CreateNewItem
EA/CreateNewAgent
CA/NoWorkflow
|
