summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl/ur_V7/URSuche.java
diff options
context:
space:
mode:
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;
+}