]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
24773151f60e3cacb14d8bd1310341ff0715c567
[tmp/jakarta-migration.git] /
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2 <document name="collectionobjects">
3
4     <ns2:collectionobjects_common
5         xmlns:ns2="http://collectionspace.org/services/collectionobject">
6         <objectNumber>${objectNumber}</objectNumber>
7     </ns2:collectionobjects_common>
8
9     <ns3:relations-common-list xmlns:ns3="http://collectionspace.org/services/relation"
10                                xmlns:ns2="http://collectionspace.org/services/jaxb">
11         
12         <!-- Create hierarchical relationships between the chess set box -->
13         <!-- and its three children: the chess board, and the bags of white -->
14         <!-- and black chess pieces -->
15         
16         <relation-list-item>
17             <predicate>hasBroader</predicate>
18             <subject>
19                 <csid>${chessBoardCSID}</csid>
20                 <documentType>CollectionObject</documentType>
21             </subject>
22             <object>
23                 <csid>${chessSetBoxCSID}</csid>
24                 <documentType>CollectionObject</documentType>
25             </object>
26         </relation-list-item>
27         
28         <relation-list-item>
29             <predicate>hasBroader</predicate>
30             <subject>
31                 <csid>${bagOfWhiteChessPiecesCSID}</csid>
32                 <documentType>CollectionObject</documentType>
33            </subject>
34             <object>
35                 <csid>${chessSetBoxCSID}</csid>
36                 <documentType>CollectionObject</documentType>
37            </object>
38         </relation-list-item>
39         
40         <relation-list-item>
41             <predicate>hasBroader</predicate>
42             <subject>
43                 <csid>${bagOfBlackChessPiecesCSID}</csid>
44                 <documentType>CollectionObject</documentType>
45             </subject>
46             <object>
47                 <csid>${chessSetBoxCSID}</csid>
48                 <documentType>CollectionObject</documentType>
49             </object>
50         </relation-list-item>
51         
52         <!--
53             Create hierarchical relationships between the bags of white 
54             and black chess pieces, and the pieces they contain.
55         -->
56         
57         <relation-list-item>
58             <predicate>hasBroader</predicate>
59             <subject>
60                 <csid>${whiteRookCSID}</csid>
61                 <documentType>CollectionObject</documentType>
62            </subject>
63             <object>
64                 <csid>${bagOfWhiteChessPiecesCSID}</csid>
65                 <documentType>CollectionObject</documentType>
66             </object>
67         </relation-list-item>
68
69         <relation-list-item>
70             <predicate>hasBroader</predicate>
71             <subject>
72                 <csid>${whiteBishopCSID}</csid>
73                 <documentType>CollectionObject</documentType>
74             </subject>
75             <object>
76                 <csid>${bagOfWhiteChessPiecesCSID}</csid>
77                 <documentType>CollectionObject</documentType>
78             </object>
79         </relation-list-item>
80
81         <relation-list-item>
82             <predicate>hasBroader</predicate>
83             <subject>
84                 <csid>${blackQueenCSID}</csid>
85                 <documentType>CollectionObject</documentType>
86             </subject>
87             <object>
88                 <csid>${bagOfBlackChessPiecesCSID}</csid>
89                 <documentType>CollectionObject</documentType>
90             </object>
91         </relation-list-item>
92         
93         <!-- The relationship between the bag of black pieces -->
94         <!-- and the black rook is set in a separate payload. -->
95         
96     </ns3:relations-common-list>
97 </document>
98
99