1
2 package org.kuali.ole.docstore.common.document.content.instance;
3
4 import com.thoughtworks.xstream.annotations.XStreamAlias;
5 import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
6
7 import javax.xml.bind.annotation.*;
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 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "sourceHoldings", namespace = "http://ole.kuali.org/standards/ole-instance", propOrder = {
39 "holdingsIdentifier",
40 "name",
41 "holdings",
42 "extension"
43 })
44 @XStreamAlias("sourceHoldings")
45 @XmlRootElement(name = "sourceHoldings", namespace = "http://ole.kuali.org/standards/ole-instance")
46 public class SourceHoldings {
47
48 @XmlElement(namespace = "http://ole.kuali.org/standards/ole-instance", required = true)
49 protected String holdingsIdentifier;
50 @XmlElement(namespace = "http://ole.kuali.org/standards/ole-instance", required = true)
51 protected String name;
52 @XmlElement(namespace = "http://ole.kuali.org/standards/ole-instance", required = true)
53 protected Extension holdings;
54 @XmlElement(namespace = "http://ole.kuali.org/standards/ole-instance", required = true)
55 protected Extension extension;
56 @XmlAttribute
57 @XStreamAsAttribute
58 protected String primary;
59
60
61
62
63
64
65
66 public String getHoldingsIdentifier() {
67 return holdingsIdentifier;
68 }
69
70
71
72
73
74
75
76 public void setHoldingsIdentifier(String value) {
77 this.holdingsIdentifier = value;
78 }
79
80
81
82
83
84
85
86 public String getName() {
87 return name;
88 }
89
90
91
92
93
94
95
96 public void setName(String value) {
97 this.name = value;
98 }
99
100
101
102
103
104
105
106 public Extension getHoldings() {
107 return holdings;
108 }
109
110
111
112
113
114
115
116 public void setHoldings(Extension value) {
117 this.holdings = value;
118 }
119
120
121
122
123
124
125
126 public Extension getExtension() {
127 return extension;
128 }
129
130
131
132
133
134
135
136 public void setExtension(Extension value) {
137 this.extension = value;
138 }
139
140
141
142
143
144
145
146 public String getPrimary() {
147 return primary;
148 }
149
150
151
152
153
154
155
156 public void setPrimary(String value) {
157 this.primary = value;
158 }
159
160 }