bernard
authored
|
1
|
<jxb:bindings version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
bernard
authored
|
2
3
4
|
xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd">
|
bernard
authored
|
5
|
<jxb:bindings schemaLocation="../xsd/issuesByProject.xsd" node="/xs:schema">
|
bernard
authored
|
6
7
8
9
10
|
<jxb:bindings node=".//xs:element[@name='issues']//xs:sequence[@id='issues']">
<jxb:property name="issues"/>
</jxb:bindings>
</jxb:bindings>
|
bernard
authored
|
11
12
13
14
15
16
|
<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
|
17
18
19
20
21
22
|
<jxb:bindings schemaLocation="../xsd/assignees.xsd" node="/xs:schema">
<jxb:bindings node=".//xs:element[@name='assigneeList']//xs:sequence[@id='innerAssignees']">
<jxb:property name="assignees"/>
</jxb:bindings>
</jxb:bindings>
|
bernard
authored
|
23
|
<jxb:bindings schemaLocation="../xsd/types.xsd" node="/xs:schema">
|
bernard
authored
|
24
25
|
<jxb:globalBindings localScoping="nested"/>
|
bernard
authored
|
26
|
|
bernard
authored
|
27
28
29
30
31
32
33
34
35
36
37
|
<jxb:bindings node=".//xs:complexType[@name='enumerationType']">
<jxb:bindings node="./xs:sequence[@id='enumerationTypeValue']">
<jxb:property name="values"/>
</jxb:bindings>
<jxb:class name="Enumeration"/>
</jxb:bindings>
<jxb:bindings node=".//xs:complexType[@name='enumerationValueType']">
<jxb:class name="EnumerationValue"/>
</jxb:bindings>
|
bernard
authored
|
38
39
40
|
<jxb:bindings node=".//xs:complexType[@name='fieldType']">
<jxb:bindings node="./xs:sequence[@id='value']">
<jxb:property name="values"/>
|
bernard
authored
|
41
|
</jxb:bindings>
|
bernard
authored
|
42
|
<jxb:class name="Field"/>
|
bernard
authored
|
43
|
</jxb:bindings>
|
bernard
authored
|
44
45
46
47
48
49
50
51
52
|
<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
|
53
54
55
56
|
<jxb:bindings node=".//xs:complexType[@name='userType']">
<jxb:class name="User"/>
</jxb:bindings>
|
bernard
authored
|
57
|
</jxb:bindings>
|
bernard
authored
|
58
|
|
bernard
authored
|
59
|
</jxb:bindings>
|