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 * Created by IntelliJ IDEA.
13 * User: vivekb
14 * Date: 8/17/12
15 * Time: 10:47 AM
16 * To change this template use File | Settings | File Templates.
17 * <p/>
18 * <p>Java class for checkInLocation complex type.
19 * <p/>
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 * <p/>
22 * <pre>
23 * <complexType name="checkInLocation">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="count" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
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 * Gets the value of the name property.
54 *
55 * @return possible object is
56 * {@link String }
57 */
58 public String getName() {
59 return name;
60 }
61
62 /**
63 * Sets the value of the name property.
64 *
65 * @param value allowed object is
66 * {@link String }
67 */
68 public void setName(String value) {
69 this.name = value;
70 }
71
72 /**
73 * Gets the value of the count property.
74 *
75 * @return possible object is
76 * {@link String }
77 */
78 public Integer getCount() {
79 return count;
80 }
81
82 /**
83 * Sets the value of the count property.
84 *
85 * @param value allowed object is
86 * {@link String }
87 */
88 public void setCount(Integer value) {
89 this.count = value;
90 }
91
92 /**
93 * Gets the value of the inHouseCount property.
94 *
95 * @return possible object is
96 * {@link String }
97 */
98 public Integer getInHouseCount() {
99 return inHouseCount;
100 }
101
102 /**
103 * Sets the value of the inHouseCount property.
104 *
105 * @param value allowed object is
106 * {@link String }
107 */
108 public void setInHouseCount(Integer value) {
109 this.inHouseCount = value;
110 }
111 }