Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample-config.xml
More file actions
Latest commit
85 lines (72 loc) · 2.48 KB
/
Copy pathsample-config.xml
File metadata and controls
85 lines (72 loc) · 2.48 KB
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>
<transactionsmode="single"/>
<details>
<detailname="entry"/>
<detailname="page"/>
<detailname="tabBands"/>
<detailname="tabRecords"/>
<detailname="tabTracks"/>
</details>
<nodes>
<nodetype="band">
<propertyname="name"type="String"/>
<propertyname="urlLogo"type="String"/>
<propertyname="urlWebsite"type="String"/>
<propertyname="urlMySpace"type="String"/>
<propertyname="description"type="String"/>
<relationname="records"type="record[]"/>
<relationname="tracks"type="track[]"/>
<outputdetail="entry">
<out-propertyproperty="name"/>
</output>
<outputdetail="page">
<out-propertyproperty="name"/>
<out-relationrelation="records"detail="entry"/>
<out-relationrelation="tracks"detail="entry"/>
</output>
<outputdetail="tabRecords">
<out-relationrelation="records"detail="entry"/>
</output>
<outputdetail="tabTracks">
<out-relationrelation="tracks"detail="entry"/>
</output>
</node>
<nodetype="record">
<propertyname="name"type="String"/>
<propertyname="releaseDate"type="String"/>
<relationname="bands"type="band[]"/>
<relationname="tracks"type="track[]"/>
<outputdetail="entry">
<out-propertyproperty="name"/>
<out-propertyproperty="releaseYear"/>
</output>
<outputdetail="page">
<out-propertyproperty="name"/>
<out-propertyproperty="releaseYear"/>
<out-relationrelation="bands"detail="entry"/>
<out-relationrelation="tracks"detail="entry"/>
</output>
<outputdetail="tabTracks">
<out-relationrelation="tracks"detail="entry"/>
</output>
</node>
<nodetype="track">
<propertyname="name"type="String"/>
<propertyname="trackNumber"type="String"/>
<propertyname="duration"type="String"/>
<relationname="bands"type="band[]"/>
<relationname="record"type="record"/>
<outputdetail="entry">
<out-propertyproperty="name"/>
<out-propertyproperty="trackNumber"/>
</output>
<outputdetail="page">
<out-propertyproperty="name"/>
<out-propertyproperty="trackNumber"/>
<out-relationrelation="bands"detail="entry"/>
<out-relationrelation="record"detail="entry"/>
</output>
</node>
</nodes>
</sdd-config>