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: Pranitha
14 * Date: 8/17/12
15 * Time: 10:47 AM
16 * To change this template use File | Settings | File Templates.
17 * <p>Java class for shelvingOrder complex type.
18 * <p/>
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 * <p/>
21 * <pre>
22 * <complexType name="shelvingOrder">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <sequence>
26 * <element name="codeValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
27 * <element name="fullValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="typeOrSource" type="{http://ole.kuali.org/standards/ole-instance}typeOrSource"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "shelvingOrder", propOrder = {
37 "codeValue",
38 "fullValue",
39 "typeOrSource"
40 })
41 @XStreamAlias("shelvingOrder")
42 public class ShelvingOrder {
43
44 @XmlElement(required = true)
45 protected String codeValue;
46 @XmlElement(required = true)
47 protected String fullValue;
48 @XmlElement(required = true)
49 protected TypeOrSource typeOrSource;
50
51 /**
52 * Gets the value of the codeValue property.
53 *
54 * @return possible object is
55 * {@link String }
56 */
57 public String getCodeValue() {
58 return codeValue;
59 }
60
61 /**
62 * Sets the value of the codeValue property.
63 *
64 * @param value allowed object is
65 * {@link String }
66 */
67 public void setCodeValue(String value) {
68 this.codeValue = value;
69 }
70
71 /**
72 * Gets the value of the fullValue property.
73 *
74 * @return possible object is
75 * {@link String }
76 */
77 public String getFullValue() {
78 return fullValue;
79 }
80
81 /**
82 * Sets the value of the fullValue property.
83 *
84 * @param value allowed object is
85 * {@link String }
86 */
87 public void setFullValue(String value) {
88 this.fullValue = value;
89 }
90
91 /**
92 * Gets the value of the typeOrSource property.
93 *
94 * @return possible object is
95 * {@link TypeOrSource }
96 */
97 public TypeOrSource getTypeOrSource() {
98 return typeOrSource;
99 }
100
101 /**
102 * Sets the value of the typeOrSource property.
103 *
104 * @param value allowed object is
105 * {@link TypeOrSource }
106 */
107 public void setTypeOrSource(TypeOrSource value) {
108 this.typeOrSource = value;
109 }
110
111 }