package at.gv.util.xsd.ur_V2.xmlsw; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for SearchResponseType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SearchResponseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestId"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}Message" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultInfo"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultRecords" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchResponseType", propOrder = { "searchRequestId", "message", "resultInfo", "resultRecords" }) public class SearchResponseType { @XmlElement(name = "SearchRequestId", required = true) protected String searchRequestId; @XmlElement(name = "Message") protected CustomFaultType message; @XmlElement(name = "ResultInfo", required = true) protected ResultInfoType resultInfo; @XmlElement(name = "ResultRecords") protected ResultRecords resultRecords; /** * Gets the value of the searchRequestId property. * * @return * possible object is * {@link String } * */ public String getSearchRequestId() { return searchRequestId; } /** * Sets the value of the searchRequestId property. * * @param value * allowed object is * {@link String } * */ public void setSearchRequestId(String value) { this.searchRequestId = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link CustomFaultType } * */ public CustomFaultType getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link CustomFaultType } * */ public void setMessage(CustomFaultType value) { this.message = value; } /** * Gets the value of the resultInfo property. * * @return * possible object is * {@link ResultInfoType } * */ public ResultInfoType getResultInfo() { return resultInfo; } /** * Sets the value of the resultInfo property. * * @param value * allowed object is * {@link ResultInfoType } * */ public void setResultInfo(ResultInfoType value) { this.resultInfo = value; } /** * Gets the value of the resultRecords property. * * @return * possible object is * {@link ResultRecords } * */ public ResultRecords getResultRecords() { return resultRecords; } /** * Sets the value of the resultRecords property. * * @param value * allowed object is * {@link ResultRecords } * */ public void setResultRecords(ResultRecords value) { this.resultRecords = value; } }