001package org.kuali.ole.docstore.common.search;
002
003import javax.xml.bind.annotation.XmlAccessType;
004import javax.xml.bind.annotation.XmlAccessorType;
005import javax.xml.bind.annotation.XmlType;
006
007
008/**
009 * <p>Java class for searchResultField complex type.
010 * <p/>
011 * <p>The following schema fragment specifies the expected content contained within this class.
012 * <p/>
013 * <pre>
014 * &lt;complexType name="searchResultField">
015 *   &lt;complexContent>
016 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
017 *       &lt;sequence>
018 *         &lt;element name="docType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
019 *         &lt;element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
020 *         &lt;element name="fieldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
021 *       &lt;/sequence>
022 *     &lt;/restriction>
023 *   &lt;/complexContent>
024 * &lt;/complexType>
025 * </pre>
026 */
027@XmlAccessorType(XmlAccessType.FIELD)
028@XmlType(name = "searchResultField", propOrder = {
029        "docType",
030        "fieldName",
031        "fieldValue"
032})
033public class SearchResultField {
034
035    protected String docType;
036    protected String fieldName;
037    protected String fieldValue;
038
039    /**
040     * Gets the value of the docType property.
041     *
042     * @return possible object is
043     *         {@link String }
044     */
045    public String getDocType() {
046        return docType;
047    }
048
049    /**
050     * Sets the value of the docType property.
051     *
052     * @param value allowed object is
053     *              {@link String }
054     */
055    public void setDocType(String value) {
056        this.docType = value;
057    }
058
059    /**
060     * Gets the value of the fieldName property.
061     *
062     * @return possible object is
063     *         {@link String }
064     */
065    public String getFieldName() {
066        return fieldName;
067    }
068
069    /**
070     * Sets the value of the fieldName property.
071     *
072     * @param value allowed object is
073     *              {@link String }
074     */
075    public void setFieldName(String value) {
076        this.fieldName = value;
077    }
078
079    /**
080     * Gets the value of the fieldValue property.
081     *
082     * @return possible object is
083     *         {@link String }
084     */
085    public String getFieldValue() {
086        return fieldValue;
087    }
088
089    /**
090     * Sets the value of the fieldValue property.
091     *
092     * @param value allowed object is
093     *              {@link String }
094     */
095    public void setFieldValue(String value) {
096        this.fieldValue = value;
097    }
098}