123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- targetNamespace="urn:jboss:domain:configadmin:1.0"
- xmlns="urn:jboss:domain:configadmin:1.0"
- elementFormDefault="qualified"
- attributeFormDefault="unqualified"
- version="1.0">
-
- <xs:element name="subsystem" type="subsystemType"/>
- <xs:complexType name="subsystemType">
- <xs:annotation>
- <xs:documentation>
- <![CDATA[
- The configuration of the ConfigAdmin subsystem.
- ]]>
- </xs:documentation>
- </xs:annotation>
- <xs:sequence>
- <xs:element name="configuration" type="configurationType" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="configurationType">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:element name="property" type="propertyType"/>
- </xs:choice>
- <xs:attribute name="pid" type="xs:string" use="required"/>
- </xs:complexType>
- <xs:complexType name="propertyType">
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="value" type="xs:string" use="required"/>
- </xs:complexType>
-
- </xs:schema>
|