From 107930978eefc7234e99bbccd483f4da3a690c0d Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Tue, 25 Mar 2014 12:11:34 +0100 Subject: add UR Client version 5 remove UR Client version 1 change egovutils version to 1.0.5 --- .../gv/util/xsd/ur/xmlsw/SearchResponseType.java | 146 --------------------- 1 file changed, 146 deletions(-) delete mode 100644 src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java (limited to 'src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java') diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java deleted file mode 100644 index 4af6e3e..0000000 --- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.gv.util.xsd.ur.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; - } - -} -- cgit v1.2.3