-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample-config.xml
85 lines (72 loc) · 2.48 KB
/
sample-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0"?>
<sdd-config>
<transactions mode="single"/>
<details>
<detail name="entry"/>
<detail name="page"/>
<detail name="tabBands"/>
<detail name="tabRecords"/>
<detail name="tabTracks"/>
</details>
<nodes>
<node type="band">
<property name="name" type="String"/>
<property name="urlLogo" type="String"/>
<property name="urlWebsite" type="String"/>
<property name="urlMySpace" type="String"/>
<property name="description" type="String"/>
<relation name="records" type="record[]"/>
<relation name="tracks" type="track[]"/>
<output detail="entry">
<out-property property="name"/>
</output>
<output detail="page">
<out-property property="name"/>
<out-relation relation="records" detail="entry"/>
<out-relation relation="tracks" detail="entry"/>
</output>
<output detail="tabRecords">
<out-relation relation="records" detail="entry"/>
</output>
<output detail="tabTracks">
<out-relation relation="tracks" detail="entry"/>
</output>
</node>
<node type="record">
<property name="name" type="String"/>
<property name="releaseDate" type="String"/>
<relation name="bands" type="band[]"/>
<relation name="tracks" type="track[]"/>
<output detail="entry">
<out-property property="name"/>
<out-property property="releaseYear"/>
</output>
<output detail="page">
<out-property property="name"/>
<out-property property="releaseYear"/>
<out-relation relation="bands" detail="entry"/>
<out-relation relation="tracks" detail="entry"/>
</output>
<output detail="tabTracks">
<out-relation relation="tracks" detail="entry"/>
</output>
</node>
<node type="track">
<property name="name" type="String"/>
<property name="trackNumber" type="String"/>
<property name="duration" type="String"/>
<relation name="bands" type="band[]"/>
<relation name="record" type="record"/>
<output detail="entry">
<out-property property="name"/>
<out-property property="trackNumber"/>
</output>
<output detail="page">
<out-property property="name"/>
<out-property property="trackNumber"/>
<out-relation relation="bands" detail="entry"/>
<out-relation relation="record" detail="entry"/>
</output>
</node>
</nodes>
</sdd-config>