summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java
diff options
context:
space:
mode:
authorThomas <>2021-03-29 15:38:23 +0200
committerThomas <>2021-03-29 15:38:23 +0200
commitea2295a8671c88a8510f764e70c8f1c135bf5675 (patch)
treed3a8f4150cd78f420295a8cfe3421f7ae68dbc67 /src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java
parent12fb29d8c9bb0e611c395b98b0c25e9107bcddf3 (diff)
downloadegovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.tar.gz
egovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.tar.bz2
egovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.zip
add UR v7 web-service spezification
Diffstat (limited to 'src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java')
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java b/src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java
new file mode 100644
index 0000000..c45d2c7
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java
@@ -0,0 +1,44 @@
+package at.gv.util.wsdl.ur_V7;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+
+/**
+ * This class was generated by Apache CXF 3.1.10
+ * 2021-03-29T14:50:13.020+02:00
+ * Generated source version: 3.1.10
+ *
+ */
+@WebService(targetNamespace = "urn:at:statistik:ur:ws", name = "URSuche")
+@XmlSeeAlso({at.gv.util.xsd.ur_V7.search.ObjectFactory.class, at.gv.util.xsd.ur_V7.xmlsw.ObjectFactory.class, at.gv.util.xsd.ur_V7.pd.ObjectFactory.class, at.gv.util.xsd.ur_V7.simpletypes.ObjectFactory.class})
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+public interface URSuche {
+
+ /**
+ * 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 at.gv.util.xsd.ur_V7.xmlsw.SearchResponseType searchByExample(
+ @WebParam(partName = "body", name = "SearchByExample", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#")
+ at.gv.util.xsd.ur_V7.xmlsw.SearchByExampleType body
+ ) 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 at.gv.util.xsd.ur_V7.xmlsw.SearchResponseType searchById(
+ @WebParam(partName = "body", name = "SearchById", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#")
+ at.gv.util.xsd.ur_V7.xmlsw.SearchByIdType body
+ ) throws XmlSwFault;
+}