Blame view

src/main/xjb/bindings.xjb 1.6 KB
bernard authored
1
<jxb:bindings version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema"
bernard authored
2
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bernard authored
3 4 5
              xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd">

bernard authored
6
    <jxb:bindings schemaLocation="../xsd/issuesByProject.xsd" node="/xs:schema">
bernard authored
7 8 9 10 11
        <jxb:bindings node=".//xs:element[@name='issues']//xs:sequence[@id='issues']">
            <jxb:property name="issues"/>
        </jxb:bindings>
    </jxb:bindings>
bernard authored
12 13 14 15 16 17
    <jxb:bindings schemaLocation="../xsd/individualAssignees.xsd" node="/xs:schema">
        <jxb:bindings node=".//xs:element[@name='userRefs']//xs:sequence[@id='users']">
            <jxb:property name="users"/>
        </jxb:bindings>
    </jxb:bindings>
bernard authored
18
    <jxb:bindings schemaLocation="../xsd/types.xsd" node="/xs:schema">
bernard authored
19 20

        <jxb:globalBindings localScoping="nested"/>
bernard authored
21 22 23 24

        <jxb:bindings node=".//xs:complexType[@name='fieldType']">
            <jxb:bindings node="./xs:sequence[@id='value']">
                <jxb:property name="values"/>
bernard authored
25
            </jxb:bindings>
bernard authored
26
            <jxb:class name="Field"/>
bernard authored
27
        </jxb:bindings>
bernard authored
28 29 30 31 32 33 34 35 36

        <jxb:bindings node=".//xs:complexType[@name='issueType']">
            <jxb:class name="Issue"/>
        </jxb:bindings>

        <jxb:bindings node=".//xs:complexType[@name='commentType']">
            <jxb:class name="Comment"/>
        </jxb:bindings>
bernard authored
37 38 39 40
        <jxb:bindings node=".//xs:complexType[@name='userType']">
            <jxb:class name="User"/>
        </jxb:bindings>
bernard authored
41
    </jxb:bindings>
bernard authored
42
bernard authored
43
</jxb:bindings>