summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-10-16 13:42:04 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-10-16 13:42:04 +0200
commite2150f22562b4bc06307f4ac7b842687390e4856 (patch)
tree768250437cca30ab4fda039d924269e37fd99414 /src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
parent2f3b7f180511a5e0af674e3a25ddbaabaa38d36c (diff)
downloadegovutils-e2150f22562b4bc06307f4ac7b842687390e4856.tar.gz
egovutils-e2150f22562b4bc06307f4ac7b842687390e4856.tar.bz2
egovutils-e2150f22562b4bc06307f4ac7b842687390e4856.zip
change webservice implementation to Apache CXF
Diffstat (limited to 'src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java')
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java66
1 files changed, 21 insertions, 45 deletions
diff --git a/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java b/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
index 1d0e99d..a8dc124 100644
--- a/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
+++ b/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
@@ -1,4 +1,3 @@
-
package at.gv.util.wsdl.ur_V5;
import javax.jws.WebMethod;
@@ -7,62 +6,39 @@ import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
-import at.gv.util.xsd.ur_V5.xmlsw.SearchByExampleType;
-import at.gv.util.xsd.ur_V5.xmlsw.SearchByIdType;
-import at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType;
-
/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2.4-b01
- * Generated source version: 2.2
+ * This class was generated by Apache CXF 3.0.1
+ * 2014-10-16T12:00:10.771+02:00
+ * Generated source version: 3.0.1
*
*/
-@WebService(name = "URSuche", targetNamespace = "urn:at:statistik:ur:ws")
+@WebService(targetNamespace = "urn:at:statistik:ur:ws", name = "URSuche")
+@XmlSeeAlso({at.gv.util.xsd.ur_V5.pd.ObjectFactory.class, at.gv.util.xsd.ur_V5.simpletypes.ObjectFactory.class, at.gv.util.xsd.ur_V5.search.ObjectFactory.class, at.gv.util.xsd.ur_V5.xmlsw.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
-@XmlSeeAlso({
- at.gv.util.xsd.ur_V5.pd.ObjectFactory.class,
- at.gv.util.xsd.ur_V5.search.ObjectFactory.class,
- at.gv.util.xsd.ur_V5.xmlsw.ObjectFactory.class,
- at.gv.util.xsd.ur_V5.simpletypes.ObjectFactory.class
-})
public interface URSuche {
-
/**
- * Operation für den Abfragetyp
- * Search by Example
- *
- *
- * @param body
- * @return
- * returns at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType
- * @throws XmlSwFault
+ * Operation für den Abfragetyp
+ * Search by Example
+ *
*/
- @WebMethod
@WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body")
- public SearchResponseType searchByExample(
- @WebParam(name = "SearchByExample", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body")
- SearchByExampleType body)
- throws XmlSwFault
- ;
+ @WebMethod
+ public at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType searchByExample(
+ @WebParam(partName = "body", name = "SearchByExample", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#")
+ at.gv.util.xsd.ur_V5.xmlsw.SearchByExampleType body
+ ) throws XmlSwFault;
/**
- * Operation für den Abfragetyp
- * Search by Id
- *
- *
- * @param body
- * @return
- * returns at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType
- * @throws XmlSwFault
+ * Operation für den Abfragetyp
+ * Search by Id
+ *
*/
- @WebMethod
@WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body")
- public SearchResponseType searchById(
- @WebParam(name = "SearchById", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body")
- SearchByIdType body)
- throws XmlSwFault
- ;
-
+ @WebMethod
+ public at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType searchById(
+ @WebParam(partName = "body", name = "SearchById", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#")
+ at.gv.util.xsd.ur_V5.xmlsw.SearchByIdType body
+ ) throws XmlSwFault;
}