1 package org.kuali.ole.docstore.common.document.content.instance;
2
3 import com.thoughtworks.xstream.annotations.XStreamAlias;
4
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
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 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "checkInLocation", propOrder = {
37 "name",
38 "count",
39 "inHouseCount"
40 })
41 @XStreamAlias("checkInLocation")
42 public class CheckInLocation {
43
44 @XmlElement(name = "name", required = true)
45 protected String name;
46 @XmlElement(name = "count", required = true)
47 protected Integer count;
48
49 @XmlElement(name = "inHouseCount", required = true)
50 protected Integer inHouseCount;
51
52
53
54
55
56
57
58 public String getName() {
59 return name;
60 }
61
62
63
64
65
66
67
68 public void setName(String value) {
69 this.name = value;
70 }
71
72
73
74
75
76
77
78 public Integer getCount() {
79 return count;
80 }
81
82
83
84
85
86
87
88 public void setCount(Integer value) {
89 this.count = value;
90 }
91
92
93
94
95
96
97
98 public Integer getInHouseCount() {
99 return inHouseCount;
100 }
101
102
103
104
105
106
107
108 public void setInHouseCount(Integer value) {
109 this.inHouseCount = value;
110 }
111 }