View Javadoc
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   * <p>Java class for itemStatus complex type.
11   * <p/>
12   * <p>The following schema fragment specifies the expected content contained within this class.
13   * <p/>
14   * <pre>
15   * &lt;complexType name="itemStatus">
16   *   &lt;complexContent>
17   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18   *       &lt;sequence>
19   *         &lt;element name="codeValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
20   *         &lt;element name="fullValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
21   *       &lt;/sequence>
22   *     &lt;/restriction>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   */
27  @XmlAccessorType(XmlAccessType.FIELD)
28  @XmlType(name = "itemStatus", propOrder = {
29          "codeValue",
30          "fullValue"
31  })
32  public class ItemStatus {
33  
34      @XmlElement(required = true)
35      protected String codeValue;
36      @XmlElement(required = true)
37      protected String fullValue;
38  
39      /**
40       * Gets the value of the codeValue property.
41       *
42       * @return possible object is
43       *         {@link String }
44       */
45      public String getCodeValue() {
46          return codeValue;
47      }
48  
49      /**
50       * Sets the value of the codeValue property.
51       *
52       * @param value allowed object is
53       *              {@link String }
54       */
55      public void setCodeValue(String value) {
56          this.codeValue = value;
57      }
58  
59      /**
60       * Gets the value of the fullValue property.
61       *
62       * @return possible object is
63       *         {@link String }
64       */
65      public String getFullValue() {
66          return fullValue;
67      }
68  
69      /**
70       * Sets the value of the fullValue property.
71       *
72       * @param value allowed object is
73       *              {@link String }
74       */
75      public void setFullValue(String value) {
76          this.fullValue = value;
77      }
78  
79  }