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   
8   /**
9    * <p>Java class for searchResultField complex type.
10   * <p/>
11   * <p>The following schema fragment specifies the expected content contained within this class.
12   * <p/>
13   * <pre>
14   * &lt;complexType name="searchResultField">
15   *   &lt;complexContent>
16   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
17   *       &lt;sequence>
18   *         &lt;element name="docType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
19   *         &lt;element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20   *         &lt;element name="fieldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21   *       &lt;/sequence>
22   *     &lt;/restriction>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   */
27  @XmlAccessorType(XmlAccessType.FIELD)
28  @XmlType(name = "searchResultField", propOrder = {
29          "docType",
30          "fieldName",
31          "fieldValue"
32  })
33  public class SearchResultField {
34  
35      protected String docType;
36      protected String fieldName;
37      protected String fieldValue;
38  
39      /**
40       * Gets the value of the docType property.
41       *
42       * @return possible object is
43       *         {@link String }
44       */
45      public String getDocType() {
46          return docType;
47      }
48  
49      /**
50       * Sets the value of the docType property.
51       *
52       * @param value allowed object is
53       *              {@link String }
54       */
55      public void setDocType(String value) {
56          this.docType = value;
57      }
58  
59      /**
60       * Gets the value of the fieldName property.
61       *
62       * @return possible object is
63       *         {@link String }
64       */
65      public String getFieldName() {
66          return fieldName;
67      }
68  
69      /**
70       * Sets the value of the fieldName property.
71       *
72       * @param value allowed object is
73       *              {@link String }
74       */
75      public void setFieldName(String value) {
76          this.fieldName = value;
77      }
78  
79      /**
80       * Gets the value of the fieldValue property.
81       *
82       * @return possible object is
83       *         {@link String }
84       */
85      public String getFieldValue() {
86          return fieldValue;
87      }
88  
89      /**
90       * Sets the value of the fieldValue property.
91       *
92       * @param value allowed object is
93       *              {@link String }
94       */
95      public void setFieldValue(String value) {
96          this.fieldValue = value;
97      }
98  }