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 * <complexType name="searchResultField"> 015 * <complexContent> 016 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 017 * <sequence> 018 * <element name="docType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 019 * <element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 020 * <element name="fieldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 021 * </sequence> 022 * </restriction> 023 * </complexContent> 024 * </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}