Skip to content

Instantly share code, notes, and snippets.

@maeste
Created January 22, 2014 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maeste/8559338 to your computer and use it in GitHub Desktop.
Save maeste/8559338 to your computer and use it in GitHub Desktop.
<xs:complexType name="llr-resources-Type">
<xs:annotation>
<xs:documentation>
<![CDATA[
Settings for LLR resources
]]>
</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="llr-resource" type="llr-resource-Type" minOccurs="1"/>
</xs:all>
</xs:complexType>
<xs:complexType name="llr-resource-Type">
<xs:annotation>
<xs:documentation>
<![CDATA[
Settings for a single LLR resource
]]>
</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="table" type="table-Type" minOccurs="0" maxOccurs="1"/>
</xs:all>
<xs:attribute name="jndi-name" type="xs:token" use="required"/>
</xs:complexType>
<xs:complexType name="table-Type">
<xs:annotation>
<xs:documentation>
<![CDATA[
Settings for a single LLR resource
]]>
</xs:documentation>
</xs:annotation>
<xs:attribute name="name" type="xs:token" use="optional"/>
<xs:attribute name="batch-size" type="xs:integer" use="optional" default="100"/>
<xs:attribute name="immediate-cleanup" type="xs:boolean" use="optional" default="true"/>
</xs:complexType>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment