1 package org.kuali.ole.docstore.common.document.content.instance;
2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlElement;
6 import javax.xml.bind.annotation.XmlType;
7
8
9 /**
10 * (R)
11 * Does not map to MFHD. Identifies types of locally defined statistical categories.
12 * Example:
13 * codeValue=STRVIDEO
14 * fullValue=Streaming Video
15 * typeOrSource=Can be a pointer to LOC to pull down pre-defined list
16 * <p/>
17 * <p/>
18 * <p>Java class for statisticalSearchingCode 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="statisticalSearchingCode">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="codeValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="fullValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * <element name="typeOrSource" type="{http://ole.kuali.org/standards/ole-instance}typeOrSource"/>
30 * </sequence>
31 * </restriction>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "statisticalSearchingCode", propOrder = {
38 "codeValue",
39 "fullValue",
40 "typeOrSource"
41 })
42 public class StatisticalSearchingCode {
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 }