ARTEMIS-943 fix queueType in import-export schema

https://issues.apache.org/jira/browse/ARTEMIS-943

queueType in the artemis-import-export schema needs to be marked with
min and max occurs attributes to specify that the element can occur more than one
time.  This is important so JAXB generates the correct bindings.
This commit is contained in:
Christopher L. Shannon (cshannon) 2017-02-15 10:12:07 -05:00
parent cdc974e71e
commit 637405a886
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@
</xsd:complexType>
<xsd:complexType name="queuesType">
<xsd:sequence>
<xsd:element type="queueType" name="queue"/>
<xsd:element type="queueType" name="queue" minOccurs="1" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="bodyType">