1 package org.kuali.ole.docstore.common.document.content.instance;
2
3 import com.thoughtworks.xstream.annotations.XStreamAlias;
4 import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
5
6 import javax.xml.bind.annotation.*;
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 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "location", propOrder = {"locationLevel"})
34 @XStreamAlias("location")
35 public class Location {
36
37 @XmlElement(required = true)
38 protected LocationLevel locationLevel;
39 @XmlAttribute
40 @XStreamAsAttribute
41 protected String primary;
42 @XmlAttribute
43 @XStreamAsAttribute
44 protected String status;
45
46
47
48
49
50
51
52 public LocationLevel getLocationLevel() {
53 return locationLevel;
54 }
55
56
57
58
59
60
61
62 public void setLocationLevel(LocationLevel value) {
63 this.locationLevel = value;
64 }
65
66
67
68
69 public String getPrimary() {
70 return primary;
71 }
72
73
74
75
76 public void setPrimary(String primary) {
77 this.primary = primary;
78 }
79
80
81
82
83 public String getStatus() {
84 return status;
85 }
86
87
88
89
90 public void setStatus(String status) {
91 this.status = status;
92 }
93 }