View Javadoc

1   package org.kuali.ole.docstore.common.search;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlType;
6   
7   import javax.xml.bind.annotation.XmlAccessType;
8   import javax.xml.bind.annotation.XmlAccessorType;
9   import javax.xml.bind.annotation.XmlType;
10  
11  
12  /**
13   * <p>Java class for searchField complex type.
14   *
15   * <p>The following schema fragment specifies the expected content contained within this class.
16   *
17   * <pre>
18   * &lt;complexType name="searchField">
19   *   &lt;complexContent>
20   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21   *       &lt;sequence>
22   *         &lt;element name="docType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23   *         &lt;element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24   *         &lt;element name="fieldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25   *       &lt;/sequence>
26   *     &lt;/restriction>
27   *   &lt;/complexContent>
28   * &lt;/complexType>
29   * </pre>
30   *
31   *
32   */
33  @XmlAccessorType(XmlAccessType.FIELD)
34  @XmlType(name = "searchField", propOrder = {
35          "docType",
36          "fieldName",
37          "fieldValue"
38  })
39  public class SearchField {
40  
41      protected String docType;
42      protected String fieldName;
43      protected String fieldValue;
44  
45      /**
46       * Gets the value of the docType property.
47       *
48       * @return
49       *     possible object is
50       *     {@link String }
51       *
52       */
53      public String getDocType() {
54          return docType;
55      }
56  
57      /**
58       * Sets the value of the docType property.
59       *
60       * @param value
61       *     allowed object is
62       *     {@link String }
63       *
64       */
65      public void setDocType(String value) {
66          this.docType = value;
67      }
68  
69      /**
70       * Gets the value of the fieldName property.
71       *
72       * @return
73       *     possible object is
74       *     {@link String }
75       *
76       */
77      public String getFieldName() {
78          return fieldName;
79      }
80  
81      /**
82       * Sets the value of the fieldName property.
83       *
84       * @param value
85       *     allowed object is
86       *     {@link String }
87       *
88       */
89      public void setFieldName(String value) {
90          this.fieldName = value;
91      }
92  
93      /**
94       * Gets the value of the fieldValue property.
95       *
96       * @return
97       *     possible object is
98       *     {@link String }
99       *
100      */
101     public String getFieldValue() {
102         return fieldValue;
103     }
104 
105     /**
106      * Sets the value of the fieldValue property.
107      *
108      * @param value
109      *     allowed object is
110      *     {@link String }
111      *
112      */
113     public void setFieldValue(String value) {
114         this.fieldValue = value;
115     }
116 
117 }