2010-03-20 03:44:53 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
|
|
|
|
|
|
<xs:element name="config">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element ref="server"/>
|
|
|
|
<xs:element ref="playerTypes"/>
|
|
|
|
<xs:element ref="gameTypes"/>
|
2010-04-11 22:13:22 +00:00
|
|
|
<xs:element ref="deckTypes"/>
|
2010-03-20 03:44:53 +00:00
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
|
|
|
|
<xs:element name="server">
|
|
|
|
<xs:complexType>
|
2010-03-27 02:15:55 +00:00
|
|
|
<xs:attribute name="serverAddress" type="xs:string" use="required"/>
|
2010-03-20 03:44:53 +00:00
|
|
|
<xs:attribute name="serverName" type="xs:string" use="required"/>
|
|
|
|
<xs:attribute name="port" type="xs:positiveInteger" use="required"/>
|
|
|
|
<xs:attribute name="maxGameThreads" type="xs:positiveInteger" use="required"/>
|
|
|
|
<xs:attribute name="maxSecondsIdle" type="xs:positiveInteger" use="required"/>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
|
|
|
|
<xs:element name="plugin">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:attribute name="name" type="xs:string"/>
|
|
|
|
<xs:attribute name="jar" type="xs:string"/>
|
|
|
|
<xs:attribute name="className" type="xs:string"/>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
|
|
|
|
<xs:element name="playerTypes">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element ref="plugin" maxOccurs="unbounded"/>
|
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
|
|
|
|
<xs:element name="gameTypes">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element ref="plugin" maxOccurs="unbounded"/>
|
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
2010-04-11 22:13:22 +00:00
|
|
|
|
|
|
|
<xs:element name="deckTypes">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element ref="plugin" maxOccurs="unbounded"/>
|
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
|
2010-03-20 03:44:53 +00:00
|
|
|
</xs:schema>
|