summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java')
-rw-r--r--src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java b/src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java
new file mode 100644
index 0000000..c0e7de4
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java
@@ -0,0 +1,42 @@
+
+package at.gv.util.wsdl.zkopf;
+
+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;
+import at.gv.util.xsd.zkopf.BulkAnswerType;
+import at.gv.util.xsd.zkopf.BulkQueryType;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebService(name = "BulkPortType", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.zkopf.persondata.ObjectFactory.class,
+ at.gv.util.xsd.zkopf.xmldsig.ObjectFactory.class,
+ at.gv.util.xsd.zkopf.ObjectFactory.class
+})
+public interface BulkPortType {
+
+
+ /**
+ *
+ * @param bulkQuery
+ * @return
+ * returns at.gv.util.xsd.zkopf.BulkAnswerType
+ */
+ @WebMethod(operationName = "BulkOperation", action = "tns:BulkPortType#BulkOperation")
+ @WebResult(name = "BulkAnswer", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf", partName = "BulkAnswer")
+ public BulkAnswerType bulkOperation(
+ @WebParam(name = "BulkQuery", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf", partName = "BulkQuery")
+ BulkQueryType bulkQuery);
+
+}