summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/wsdl')
-rw-r--r--src/main/java/at/gv/util/wsdl/GetAuthenticationDataService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/IdentificationPortType.java47
-rw-r--r--src/main/java/at/gv/util/wsdl/MOAFault.java55
-rw-r--r--src/main/java/at/gv/util/wsdl/SignatureCreationPortType.java45
-rw-r--r--src/main/java/at/gv/util/wsdl/SignatureCreationService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/SignatureVerificationPortType.java62
-rw-r--r--src/main/java/at/gv/util/wsdl/SignatureVerificationService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/ersb/ErsbService.java44
-rw-r--r--src/main/java/at/gv/util/wsdl/ersb/ErsbServiceService.java85
-rw-r--r--src/main/java/at/gv/util/wsdl/mis/MandateIssuePortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/mis/MandateIssueService.java73
-rw-r--r--src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesPortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/misstork/MISSTORKService.java84
-rw-r--r--src/main/java/at/gv/util/wsdl/misstork/MISSTORKType.java46
-rw-r--r--src/main/java/at/gv/util/wsdl/misstork/MisStorkError.java54
-rw-r--r--src/main/java/at/gv/util/wsdl/mms/GetMandatesPortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/mms/GetMandatesService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/mzs/App2Mzs.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/mzs/App2MzsPortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/szr/SZR.java270
-rw-r--r--src/main/java/at/gv/util/wsdl/szr/SZRException.java54
-rw-r--r--src/main/java/at/gv/util/wsdl/szr/SZRService.java93
-rw-r--r--src/main/java/at/gv/util/wsdl/szrgw/SZRGWService.java85
-rw-r--r--src/main/java/at/gv/util/wsdl/szrgw/SZRGWType.java45
-rw-r--r--src/main/java/at/gv/util/wsdl/ur/URSuche.java63
-rw-r--r--src/main/java/at/gv/util/wsdl/ur/URSucheService.java94
-rw-r--r--src/main/java/at/gv/util/wsdl/ur/package-info.java6
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V2/URSuche.java62
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V2/URSucheService.java94
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V2/package-info.java6
-rw-r--r--src/main/java/at/gv/util/wsdl/zkopf/BulkPortType.java42
-rw-r--r--src/main/java/at/gv/util/wsdl/zkopf/BulkService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/zuserech/ClearingPortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/zuserech/ClearingService.java71
-rw-r--r--src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenPortType.java41
-rw-r--r--src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenService.java71
37 files changed, 2394 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/wsdl/GetAuthenticationDataService.java b/src/main/java/at/gv/util/wsdl/GetAuthenticationDataService.java
new file mode 100644
index 0000000..4fa21e7
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/GetAuthenticationDataService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "GetAuthenticationDataService", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", wsdlLocation = "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-ID-1.x.wsdl")
+public class GetAuthenticationDataService
+ extends Service
+{
+
+ private final static URL GETAUTHENTICATIONDATASERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.GetAuthenticationDataService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.GetAuthenticationDataService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-ID-1.x.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-ID-1.x.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ GETAUTHENTICATIONDATASERVICE_WSDL_LOCATION = url;
+ }
+
+ public GetAuthenticationDataService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public GetAuthenticationDataService() {
+ super(GETAUTHENTICATIONDATASERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/moa/20020822#", "GetAuthenticationDataService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns IdentificationPortType
+ */
+ @WebEndpoint(name = "IdentificationPort")
+ public IdentificationPortType getIdentificationPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#", "IdentificationPort"), IdentificationPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns IdentificationPortType
+ */
+ @WebEndpoint(name = "IdentificationPort")
+ public IdentificationPortType getIdentificationPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#", "IdentificationPort"), IdentificationPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/IdentificationPortType.java b/src/main/java/at/gv/util/wsdl/IdentificationPortType.java
new file mode 100644
index 0000000..ff10855
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/IdentificationPortType.java
@@ -0,0 +1,47 @@
+
+package at.gv.util.wsdl;
+
+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.saml.protocol.RequestType;
+import at.gv.util.xsd.saml.protocol.ResponseType;
+
+
+/**
+ * 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 = "IdentificationPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.saml.protocol.ObjectFactory.class,
+ at.gv.util.xsd.persondata.ObjectFactory.class,
+ at.gv.util.xsd.xmldsig.ObjectFactory.class,
+ at.gv.util.xsd.saml.assertion.ObjectFactory.class,
+ at.gv.util.xsd.moaspss.ObjectFactory.class
+})
+public interface IdentificationPortType {
+
+
+ /**
+ *
+ * @param body
+ * @return
+ * returns at.gv.util.xsd.saml.protocol.ResponseType
+ * @throws MOAFault
+ */
+ @WebMethod(action = "urn:GetAuthenticationDataAction")
+ @WebResult(name = "Response", targetNamespace = "urn:oasis:names:tc:SAML:1.0:protocol", partName = "body")
+ public ResponseType getAuthenticationData(
+ @WebParam(name = "Request", targetNamespace = "urn:oasis:names:tc:SAML:1.0:protocol", partName = "body")
+ RequestType body)
+ throws MOAFault
+ ;
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/MOAFault.java b/src/main/java/at/gv/util/wsdl/MOAFault.java
new file mode 100644
index 0000000..e631845
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/MOAFault.java
@@ -0,0 +1,55 @@
+
+package at.gv.util.wsdl;
+
+import javax.xml.ws.WebFault;
+import at.gv.util.xsd.moaspss.ErrorResponseType;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebFault(name = "ErrorResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#")
+public class MOAFault
+ extends Exception
+{
+
+ /**
+ * Java type that goes as soapenv:Fault detail element.
+ *
+ */
+ private ErrorResponseType faultInfo;
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ */
+ public MOAFault(String message, ErrorResponseType faultInfo) {
+ super(message);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ * @param cause
+ */
+ public MOAFault(String message, ErrorResponseType faultInfo, Throwable cause) {
+ super(message, cause);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @return
+ * returns fault bean: at.gv.util.xsd.moaspss.ErrorResponseType
+ */
+ public ErrorResponseType getFaultInfo() {
+ return faultInfo;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/SignatureCreationPortType.java b/src/main/java/at/gv/util/wsdl/SignatureCreationPortType.java
new file mode 100644
index 0000000..b4cd5cc
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/SignatureCreationPortType.java
@@ -0,0 +1,45 @@
+
+package at.gv.util.wsdl;
+
+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.moaspss.CreateXMLSignatureRequest;
+import at.gv.util.xsd.moaspss.CreateXMLSignatureResponseType;
+
+
+/**
+ * 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 = "SignatureCreationPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.xmldsig.ObjectFactory.class,
+ at.gv.util.xsd.moaspss.ObjectFactory.class
+})
+public interface SignatureCreationPortType {
+
+
+ /**
+ *
+ * @param body
+ * @return
+ * returns at.gv.zustellung.util.xsd.moaspss.CreateXMLSignatureResponseType
+ * @throws MOAFault
+ */
+ @WebMethod(action = "urn:CreateXMLSignatureAction")
+ @WebResult(name = "CreateXMLSignatureResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ public CreateXMLSignatureResponseType createXMLSignature(
+ @WebParam(name = "CreateXMLSignatureRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ CreateXMLSignatureRequest body)
+ throws MOAFault
+ ;
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/SignatureCreationService.java b/src/main/java/at/gv/util/wsdl/SignatureCreationService.java
new file mode 100644
index 0000000..e8d2777
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/SignatureCreationService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "SignatureCreationService", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", wsdlLocation = "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl")
+public class SignatureCreationService
+ extends Service
+{
+
+ private final static URL SIGNATURECREATIONSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.SignatureCreationService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.SignatureCreationService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ SIGNATURECREATIONSERVICE_WSDL_LOCATION = url;
+ }
+
+ public SignatureCreationService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public SignatureCreationService() {
+ super(SIGNATURECREATIONSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureCreationService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns SignatureCreationPortType
+ */
+ @WebEndpoint(name = "SignatureCreationPort")
+ public SignatureCreationPortType getSignatureCreationPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureCreationPort"), SignatureCreationPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns SignatureCreationPortType
+ */
+ @WebEndpoint(name = "SignatureCreationPort")
+ public SignatureCreationPortType getSignatureCreationPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureCreationPort"), SignatureCreationPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/SignatureVerificationPortType.java b/src/main/java/at/gv/util/wsdl/SignatureVerificationPortType.java
new file mode 100644
index 0000000..04145aa
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/SignatureVerificationPortType.java
@@ -0,0 +1,62 @@
+
+package at.gv.util.wsdl;
+
+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.moaspss.VerifyCMSSignatureRequest;
+import at.gv.util.xsd.moaspss.VerifyCMSSignatureResponseType;
+import at.gv.util.xsd.moaspss.VerifyXMLSignatureRequestType;
+import at.gv.util.xsd.moaspss.VerifyXMLSignatureResponseType;
+
+
+/**
+ * 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 = "SignatureVerificationPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.xmldsig.ObjectFactory.class,
+ at.gv.util.xsd.moaspss.ObjectFactory.class
+})
+public interface SignatureVerificationPortType {
+
+
+ /**
+ *
+ * @param body
+ * @return
+ * returns at.gv.zustellung.util.xsd.moaspss.VerifyCMSSignatureResponseType
+ * @throws MOAFault
+ */
+ @WebMethod(action = "urn:VerifyCMSSignatureAction")
+ @WebResult(name = "VerifyCMSSignatureResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ public VerifyCMSSignatureResponseType verifyCMSSignature(
+ @WebParam(name = "VerifyCMSSignatureRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ VerifyCMSSignatureRequest body)
+ throws MOAFault
+ ;
+
+ /**
+ *
+ * @param body
+ * @return
+ * returns at.gv.zustellung.util.xsd.moaspss.VerifyXMLSignatureResponseType
+ * @throws MOAFault
+ */
+ @WebMethod(action = "urn:VerifyXMLSignatureAction")
+ @WebResult(name = "VerifyXMLSignatureResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ public VerifyXMLSignatureResponseType verifyXMLSignature(
+ @WebParam(name = "VerifyXMLSignatureRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#", partName = "body")
+ VerifyXMLSignatureRequestType body)
+ throws MOAFault
+ ;
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/SignatureVerificationService.java b/src/main/java/at/gv/util/wsdl/SignatureVerificationService.java
new file mode 100644
index 0000000..9643c35
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/SignatureVerificationService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "SignatureVerificationService", targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", wsdlLocation = "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl")
+public class SignatureVerificationService
+ extends Service
+{
+
+ private final static URL SIGNATUREVERIFICATIONSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.SignatureVerificationService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.SignatureVerificationService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/openzuse/trunk/zuseutil/src/main/resources/wsdl/MOA-SPSS-1.3.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ SIGNATUREVERIFICATIONSERVICE_WSDL_LOCATION = url;
+ }
+
+ public SignatureVerificationService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public SignatureVerificationService() {
+ super(SIGNATUREVERIFICATIONSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureVerificationService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns SignatureVerificationPortType
+ */
+ @WebEndpoint(name = "SignatureVerificationPort")
+ public SignatureVerificationPortType getSignatureVerificationPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureVerificationPort"), SignatureVerificationPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns SignatureVerificationPortType
+ */
+ @WebEndpoint(name = "SignatureVerificationPort")
+ public SignatureVerificationPortType getSignatureVerificationPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/moa/20020822#moa.wsdl", "SignatureVerificationPort"), SignatureVerificationPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ersb/ErsbService.java b/src/main/java/at/gv/util/wsdl/ersb/ErsbService.java
new file mode 100644
index 0000000..6c0dddd
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ersb/ErsbService.java
@@ -0,0 +1,44 @@
+
+package at.gv.util.wsdl.ersb;
+
+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.ersb.ErsbRequest;
+import at.gv.util.xsd.ersb.ErsbResponse;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "ErsbService", targetNamespace = "http://statistik.at/namespace/ersb/1#")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.ersb.personendata1.ObjectFactory.class,
+ at.gv.util.xsd.ersb.pd.ObjectFactory.class,
+ at.gv.util.xsd.ersb.ObjectFactory.class,
+ at.gv.util.xsd.ersb.basicTypes.ObjectFactory.class,
+ at.gv.util.xsd.ersb.simpletypes.ObjectFactory.class
+})
+public interface ErsbService {
+
+
+ /**
+ *
+ * @param ersbRequest
+ * @return
+ * returns at.gv.util.xsd.ersb.ErsbResponse
+ */
+ @WebMethod(operationName = "Ersb")
+ @WebResult(name = "ErsbResponse", targetNamespace = "http://statistik.at/namespace/ersb/1#", partName = "ErsbResponse")
+ public ErsbResponse ersb(
+ @WebParam(name = "ErsbRequest", targetNamespace = "http://statistik.at/namespace/ersb/1#", partName = "ErsbRequest")
+ ErsbRequest ersbRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ersb/ErsbServiceService.java b/src/main/java/at/gv/util/wsdl/ersb/ErsbServiceService.java
new file mode 100644
index 0000000..36e4694
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ersb/ErsbServiceService.java
@@ -0,0 +1,85 @@
+
+package at.gv.util.wsdl.ersb;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "ErsbServiceService", targetNamespace = "http://statistik.at/namespace/ersb/1#", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ERsB/1.1/ErsbService.wsdl")
+public class ErsbServiceService
+ extends Service
+{
+
+ private final static URL ERSBSERVICESERVICE_WSDL_LOCATION;
+ private final static WebServiceException ERSBSERVICESERVICE_EXCEPTION;
+ private final static QName ERSBSERVICESERVICE_QNAME = new QName("http://statistik.at/namespace/ersb/1#", "ErsbServiceService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ERsB/1.1/ErsbService.wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ ERSBSERVICESERVICE_WSDL_LOCATION = url;
+ ERSBSERVICESERVICE_EXCEPTION = e;
+ }
+
+ public ErsbServiceService() {
+ super(__getWsdlLocation(), ERSBSERVICESERVICE_QNAME);
+ }
+
+
+ public ErsbServiceService(URL wsdlLocation) {
+ super(wsdlLocation, ERSBSERVICESERVICE_QNAME);
+ }
+
+
+ public ErsbServiceService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+
+ /**
+ *
+ * @return
+ * returns ErsbService
+ */
+ @WebEndpoint(name = "ErsbServiceSoap11")
+ public ErsbService getErsbServiceSoap11() {
+ return super.getPort(new QName("http://statistik.at/namespace/ersb/1#", "ErsbServiceSoap11"), ErsbService.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns ErsbService
+ */
+ @WebEndpoint(name = "ErsbServiceSoap11")
+ public ErsbService getErsbServiceSoap11(WebServiceFeature... features) {
+ return super.getPort(new QName("http://statistik.at/namespace/ersb/1#", "ErsbServiceSoap11"), ErsbService.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (ERSBSERVICESERVICE_EXCEPTION!= null) {
+ throw ERSBSERVICESERVICE_EXCEPTION;
+ }
+ return ERSBSERVICESERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mis/MandateIssuePortType.java b/src/main/java/at/gv/util/wsdl/mis/MandateIssuePortType.java
new file mode 100644
index 0000000..0e0ccdb
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mis/MandateIssuePortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.mis;
+
+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.mis.MandateIssueRequestType;
+import at.gv.util.xsd.mis.MandateIssueResponseType;
+import at.gv.util.xsd.mis.ObjectFactory;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "MandateIssuePortType", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface MandateIssuePortType {
+
+
+ /**
+ *
+ * @param mandateIssueRequest
+ * @return
+ * returns at.gv.util.xsd.mis.MandateIssueResponseType
+ */
+ @WebMethod(operationName = "MandateIssueOperation", action = "mis:MandateIssuePortType#MandateIssueOperation")
+ @WebResult(name = "MandateIssueResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", partName = "MandateIssueResponse")
+ public MandateIssueResponseType mandateIssueOperation(
+ @WebParam(name = "MandateIssueRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", partName = "MandateIssueRequest")
+ MandateIssueRequestType mandateIssueRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mis/MandateIssueService.java b/src/main/java/at/gv/util/wsdl/mis/MandateIssueService.java
new file mode 100644
index 0000000..2cc7de5
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mis/MandateIssueService.java
@@ -0,0 +1,73 @@
+
+package at.gv.util.wsdl.mis;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "MandateIssueService", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/wsdl", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/mis/mis-1.0.3.wsdl")
+public class MandateIssueService
+ extends Service
+{
+
+ private final static URL MANDATEISSUESERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.mis.MandateIssueService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.mis.MandateIssueService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mis/mis-1.0.3.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mis/mis-1.0.3.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ MANDATEISSUESERVICE_WSDL_LOCATION = url;
+ }
+
+ public MandateIssueService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public MandateIssueService() {
+ super(MANDATEISSUESERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/mandates/mis/1.0/wsdl", "MandateIssueService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns MandateIssuePortType
+ */
+ @WebEndpoint(name = "MandateIssuePort")
+ public MandateIssuePortType getMandateIssuePort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mis/1.0/wsdl", "MandateIssuePort"), MandateIssuePortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns MandateIssuePortType
+ */
+ @WebEndpoint(name = "MandateIssuePort")
+ public MandateIssuePortType getMandateIssuePort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mis/1.0/wsdl", "MandateIssuePort"), MandateIssuePortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesPortType.java b/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesPortType.java
new file mode 100644
index 0000000..22a970a
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesPortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.mis.usp;
+
+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.mis.usp.GetMandatesRequest;
+import at.gv.util.xsd.mis.usp.GetMandatesResponse;
+import at.gv.util.xsd.mis.usp.ObjectFactory;
+
+
+/**
+ * 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 = "GetMandatesPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface GetMandatesPortType {
+
+
+ /**
+ *
+ * @param getMandatesRequest
+ * @return
+ * returns at.gv.util.xsd.mis.usp.GetMandatesResponse
+ */
+ @WebMethod(operationName = "GetMandatesOperation", action = "usp:GetMandatesPortType#GetMandatesOperation")
+ @WebResult(name = "GetMandatesResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/xsd", partName = "GetMandatesResponse")
+ public GetMandatesResponse getMandatesOperation(
+ @WebParam(name = "GetMandatesRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/xsd", partName = "GetMandatesRequest")
+ GetMandatesRequest getMandatesRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesService.java b/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesService.java
new file mode 100644
index 0000000..778922f
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mis/usp/GetMandatesService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.mis.usp;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "GetMandatesService", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mis/usp/mis-usp-1.0.2.wsdl")
+public class GetMandatesService
+ extends Service
+{
+
+ private final static URL GETMANDATESSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.mis.usp.GetMandatesService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.mis.usp.GetMandatesService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mis/usp/mis-usp-1.0.2.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mis/usp/mis-usp-1.0.2.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ GETMANDATESSERVICE_WSDL_LOCATION = url;
+ }
+
+ public GetMandatesService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public GetMandatesService() {
+ super(GETMANDATESSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/wsdl", "GetMandatesService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns GetMandatesPortType
+ */
+ @WebEndpoint(name = "GetMandatesPort")
+ public GetMandatesPortType getGetMandatesPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/wsdl", "GetMandatesPort"), GetMandatesPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns GetMandatesPortType
+ */
+ @WebEndpoint(name = "GetMandatesPort")
+ public GetMandatesPortType getGetMandatesPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mis/usp/1.0.2/wsdl", "GetMandatesPort"), GetMandatesPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/misstork/MISSTORKService.java b/src/main/java/at/gv/util/wsdl/misstork/MISSTORKService.java
new file mode 100644
index 0000000..e09e161
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/misstork/MISSTORKService.java
@@ -0,0 +1,84 @@
+
+package at.gv.util.wsdl.misstork;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "MISSTORKService", targetNamespace = "http://reference.e-government.gv.at/namespace/misstork/20131126/wsdl", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/misstork/misstork.wsdl")
+public class MISSTORKService
+ extends Service
+{
+
+ private final static URL MISSTORKSERVICE_WSDL_LOCATION;
+ private final static WebServiceException MISSTORKSERVICE_EXCEPTION;
+ private final static QName MISSTORKSERVICE_QNAME = new QName("http://reference.e-government.gv.at/namespace/misstork/20131126/wsdl", "MISSTORKService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/misstork/misstork.wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ MISSTORKSERVICE_WSDL_LOCATION = url;
+ MISSTORKSERVICE_EXCEPTION = e;
+ }
+
+ public MISSTORKService() {
+ super(__getWsdlLocation(), MISSTORKSERVICE_QNAME);
+ }
+
+ public MISSTORKService(URL wsdlLocation) {
+ super(wsdlLocation, MISSTORKSERVICE_QNAME);
+ }
+
+
+ public MISSTORKService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+
+ /**
+ *
+ * @return
+ * returns MISSTORKType
+ */
+ @WebEndpoint(name = "MISSTORKPort")
+ public MISSTORKType getMISSTORKPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/misstork/20131126/wsdl", "MISSTORKPort"), MISSTORKType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns MISSTORKType
+ */
+ @WebEndpoint(name = "MISSTORKPort")
+ public MISSTORKType getMISSTORKPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/misstork/20131126/wsdl", "MISSTORKPort"), MISSTORKType.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (MISSTORKSERVICE_EXCEPTION!= null) {
+ throw MISSTORKSERVICE_EXCEPTION;
+ }
+ return MISSTORKSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/misstork/MISSTORKType.java b/src/main/java/at/gv/util/wsdl/misstork/MISSTORKType.java
new file mode 100644
index 0000000..eb807e6
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/misstork/MISSTORKType.java
@@ -0,0 +1,46 @@
+
+package at.gv.util.wsdl.misstork;
+
+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.misstork.MisStorkRequest;
+import at.gv.util.xsd.misstork.MisStorkResponse;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "MISSTORKType", targetNamespace = "http://reference.e-government.gv.at/namespace/misstork/20131126/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.misstork.ObjectFactory.class,
+ at.gv.util.xsd.persondata.ObjectFactory.class,
+ at.gv.util.xsd.mis.ObjectFactory.class,
+ at.gv.util.xsd.xmldsig.ObjectFactory.class
+})
+public interface MISSTORKType {
+
+
+ /**
+ *
+ * @param misStorkRequest
+ * @return
+ * returns at.gv.util.xsd.misstork.MisStorkResponse
+ * @throws MisStorkError
+ */
+ @WebMethod(operationName = "MISSTORKOperation", action = "ms:MISSTORKType#MISSTORKOperation")
+ @WebResult(name = "MisStorkResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/misstork/20131126/xsd", partName = "MisStorkResponse")
+ public MisStorkResponse misstorkOperation(
+ @WebParam(name = "MisStorkRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/misstork/20131126/xsd", partName = "MisStorkRequest")
+ MisStorkRequest misStorkRequest)
+ throws MisStorkError
+ ;
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/misstork/MisStorkError.java b/src/main/java/at/gv/util/wsdl/misstork/MisStorkError.java
new file mode 100644
index 0000000..6b3ecac
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/misstork/MisStorkError.java
@@ -0,0 +1,54 @@
+
+package at.gv.util.wsdl.misstork;
+
+import javax.xml.ws.WebFault;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebFault(name = "MisStorkError", targetNamespace = "http://reference.e-government.gv.at/namespace/misstork/20131126/xsd")
+public class MisStorkError
+ extends Exception
+{
+
+ /**
+ * Java type that goes as soapenv:Fault detail element.
+ *
+ */
+ private at.gv.util.xsd.misstork.MisStorkError faultInfo;
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ */
+ public MisStorkError(String message, at.gv.util.xsd.misstork.MisStorkError faultInfo) {
+ super(message);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ * @param cause
+ */
+ public MisStorkError(String message, at.gv.util.xsd.misstork.MisStorkError faultInfo, Throwable cause) {
+ super(message, cause);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @return
+ * returns fault bean: at.gv.util.xsd.misstork.MisStorkError
+ */
+ public at.gv.util.xsd.misstork.MisStorkError getFaultInfo() {
+ return faultInfo;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mms/GetMandatesPortType.java b/src/main/java/at/gv/util/wsdl/mms/GetMandatesPortType.java
new file mode 100644
index 0000000..258ca09
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mms/GetMandatesPortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.mms;
+
+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.mms.GetMandatesRequest;
+import at.gv.util.xsd.mms.GetMandatesResponse;
+import at.gv.util.xsd.mms.ObjectFactory;
+
+
+/**
+ * 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 = "GetMandatesPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface GetMandatesPortType {
+
+
+ /**
+ *
+ * @param getMandatesRequest
+ * @return
+ * returns at.gv.util.xsd.mms.GetMandatesResponse
+ */
+ @WebMethod(operationName = "GetMandatesOperation", action = "mis:GetMandatesPortType#GetMandatesOperation")
+ @WebResult(name = "GetMandatesResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd", partName = "GetMandatesResponse")
+ public GetMandatesResponse getMandatesOperation(
+ @WebParam(name = "GetMandatesRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd", partName = "GetMandatesRequest")
+ GetMandatesRequest getMandatesRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mms/GetMandatesService.java b/src/main/java/at/gv/util/wsdl/mms/GetMandatesService.java
new file mode 100644
index 0000000..e3736d0
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mms/GetMandatesService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.mms;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "GetMandatesService", targetNamespace = "http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mms/mms.wsdl")
+public class GetMandatesService
+ extends Service
+{
+
+ private final static URL GETMANDATESSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.mms.GetMandatesService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.mms.GetMandatesService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mms/mms.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mms/mms.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ GETMANDATESSERVICE_WSDL_LOCATION = url;
+ }
+
+ public GetMandatesService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public GetMandatesService() {
+ super(GETMANDATESSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl", "GetMandatesService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns GetMandatesPortType
+ */
+ @WebEndpoint(name = "GetMandatesPort")
+ public GetMandatesPortType getGetMandatesPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl", "GetMandatesPort"), GetMandatesPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns GetMandatesPortType
+ */
+ @WebEndpoint(name = "GetMandatesPort")
+ public GetMandatesPortType getGetMandatesPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl", "GetMandatesPort"), GetMandatesPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mzs/App2Mzs.java b/src/main/java/at/gv/util/wsdl/mzs/App2Mzs.java
new file mode 100644
index 0000000..d0734f4
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mzs/App2Mzs.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.mzs;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "app2mzs", targetNamespace = "http://reference.e-government.gv.at/namespace/app2mzs.wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mzs/app2mzs.wsdl")
+public class App2Mzs
+ extends Service
+{
+
+ private final static URL APP2MZS_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.mzs.App2Mzs.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.mzs.App2Mzs.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mzs/app2mzs.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/mzs/app2mzs.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ APP2MZS_WSDL_LOCATION = url;
+ }
+
+ public App2Mzs(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public App2Mzs() {
+ super(APP2MZS_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespace/app2mzs.wsdl", "app2mzs"));
+ }
+
+ /**
+ *
+ * @return
+ * returns App2MzsPortType
+ */
+ @WebEndpoint(name = "app2mzsPort")
+ public App2MzsPortType getApp2MzsPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/app2mzs.wsdl", "app2mzsPort"), App2MzsPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns App2MzsPortType
+ */
+ @WebEndpoint(name = "app2mzsPort")
+ public App2MzsPortType getApp2MzsPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/app2mzs.wsdl", "app2mzsPort"), App2MzsPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/mzs/App2MzsPortType.java b/src/main/java/at/gv/util/wsdl/mzs/App2MzsPortType.java
new file mode 100644
index 0000000..58a93fa
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/mzs/App2MzsPortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.mzs;
+
+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.mzs.DeliveryRequestType;
+import at.gv.util.xsd.mzs.DeliveryResponseType;
+
+
+/**
+ * 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 = "app2mzsPortType", targetNamespace = "http://reference.e-government.gv.at/namespace/app2mzs.wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.mzs.ObjectFactory.class,
+ at.gv.util.xsd.mzs.persondata.ObjectFactory.class
+})
+public interface App2MzsPortType {
+
+
+ /**
+ *
+ * @param deliveryRequest
+ * @return
+ * returns at.gv.util.xsd.mzs.DeliveryResponseType
+ */
+ @WebMethod(operationName = "app2mzs")
+ @WebResult(name = "DeliveryResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/moazs10/app2mzs#", partName = "DeliveryResponse")
+ public DeliveryResponseType app2Mzs(
+ @WebParam(name = "DeliveryRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/moazs10/app2mzs#", partName = "DeliveryRequest")
+ DeliveryRequestType deliveryRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/szr/SZR.java b/src/main/java/at/gv/util/wsdl/szr/SZR.java
new file mode 100644
index 0000000..381617b
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/szr/SZR.java
@@ -0,0 +1,270 @@
+
+package at.gv.util.wsdl.szr;
+
+import java.util.List;
+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 javax.xml.ws.Holder;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import at.gv.util.xsd.szr.BasiszahlZuBPKReturnType;
+import at.gv.util.xsd.szr.FremdBPKRequestType;
+import at.gv.util.xsd.szr.FremdBPKType;
+import at.gv.util.xsd.szr.GetBPKKombiRequestType;
+import at.gv.util.xsd.szr.GetBPKKombiResponseType;
+import at.gv.util.xsd.szr.GetVersionResponse;
+import at.gv.util.xsd.szr.IdentityLinkType;
+import at.gv.util.xsd.szr.PersonInfoType;
+import at.gv.util.xsd.szr.ZMRAnwendungsIntegrationReturnType;
+import at.gv.util.xsd.szr.xmldsig.KeyValueType;
+
+
+/**
+ * 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 = "SZR", targetNamespace = "urn:SZRServices")
+@XmlSeeAlso({
+ at.gv.util.xsd.szr.persondata.ObjectFactory.class,
+ at.gv.util.xsd.szr.ObjectFactory.class,
+ at.gv.util.xsd.szr.ecdsa.ObjectFactory.class,
+ at.gv.util.xsd.szr.xmldsig.ObjectFactory.class,
+ at.gv.util.xsd.szr.pvp.sec.ObjectFactory.class,
+ at.gv.util.xsd.szr.pvp.ObjectFactory.class
+})
+public interface SZR {
+
+
+ /**
+ *
+ * @param insertERnP
+ * @param personInfo
+ * @param keyValue
+ * @return
+ * returns at.gv.util.xsd.szr.IdentityLinkType
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "GetIdentityLink")
+ @WebResult(name = "GetIdentityLinkReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "GetIdentityLink", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetIdentityLink")
+ @ResponseWrapper(localName = "GetIdentityLinkResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetIdentityLinkResponse")
+ public IdentityLinkType getIdentityLink(
+ @WebParam(name = "PersonInfo", targetNamespace = "urn:SZRServices")
+ PersonInfoType personInfo,
+ @WebParam(name = "KeyValue", targetNamespace = "urn:SZRServices")
+ List<KeyValueType> keyValue,
+ @WebParam(name = "InsertERnP", targetNamespace = "urn:SZRServices")
+ Boolean insertERnP)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param listMultiplePersons
+ * @param target
+ * @param personInfo0
+ * @param bereichsKennung
+ * @param getBPKReturn
+ * @param fremdBPK
+ * @param vkz
+ * @param personInfo
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "GetBPK")
+ @RequestWrapper(localName = "GetBPK", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetBPK")
+ @ResponseWrapper(localName = "GetBPKResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetBPKResponse")
+ public void getBPK(
+ @WebParam(name = "PersonInfo", targetNamespace = "urn:SZRServices")
+ PersonInfoType personInfo,
+ @WebParam(name = "BereichsKennung", targetNamespace = "urn:SZRServices")
+ String bereichsKennung,
+ @WebParam(name = "VKZ", targetNamespace = "urn:SZRServices")
+ String vkz,
+ @WebParam(name = "Target", targetNamespace = "urn:SZRServices")
+ List<FremdBPKRequestType> target,
+ @WebParam(name = "ListMultiplePersons", targetNamespace = "urn:SZRServices")
+ Boolean listMultiplePersons,
+ @WebParam(name = "GetBPKReturn", targetNamespace = "urn:SZRServices", mode = WebParam.Mode.OUT)
+ Holder<String> getBPKReturn,
+ @WebParam(name = "FremdBPK", targetNamespace = "urn:SZRServices", mode = WebParam.Mode.OUT)
+ Holder<List<FremdBPKType>> fremdBPK,
+ @WebParam(name = "PersonInfo", targetNamespace = "urn:SZRServices", mode = WebParam.Mode.OUT)
+ Holder<List<PersonInfoType>> personInfo0)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param getBPKKombiRequest
+ * @return
+ * returns at.gv.util.xsd.szr.GetBPKKombiResponseType
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "GetBPKKombi")
+ @WebResult(name = "GetBPKKombiResponse", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "GetBPKKombi", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetBPKKombi")
+ @ResponseWrapper(localName = "GetBPKKombiResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetBPKKombiResponse")
+ public GetBPKKombiResponseType getBPKKombi(
+ @WebParam(name = "GetBPKKombiRequest", targetNamespace = "urn:SZRServices")
+ GetBPKKombiRequestType getBPKKombiRequest)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param identityLink
+ * @param bereichsKennung
+ * @return
+ * returns java.lang.String
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "ValidateIdentityLink")
+ @WebResult(name = "ValidateIdentityLinkReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "ValidateIdentityLink", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.ValidateIdentityLink")
+ @ResponseWrapper(localName = "ValidateIdentityLinkResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.ValidateIdentityLinkResponse")
+ public String validateIdentityLink(
+ @WebParam(name = "IdentityLink", targetNamespace = "urn:SZRServices")
+ IdentityLinkType identityLink,
+ @WebParam(name = "BereichsKennung", targetNamespace = "urn:SZRServices")
+ String bereichsKennung)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param begruendung
+ * @param inputBereichsKennung
+ * @param inputBPK
+ * @param target
+ * @param personInfo
+ * @return
+ * returns java.util.List<at.gv.util.xsd.szr.FremdBPKType>
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "TransformBPK")
+ @WebResult(name = "TransformBPKReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "TransformBPK", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.TransformBPK")
+ @ResponseWrapper(localName = "TransformBPKResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.TransformBPKResponse")
+ public List<FremdBPKType> transformBPK(
+ @WebParam(name = "PersonInfo", targetNamespace = "urn:SZRServices")
+ PersonInfoType personInfo,
+ @WebParam(name = "InputBPK", targetNamespace = "urn:SZRServices")
+ String inputBPK,
+ @WebParam(name = "InputBereichsKennung", targetNamespace = "urn:SZRServices")
+ String inputBereichsKennung,
+ @WebParam(name = "Begruendung", targetNamespace = "urn:SZRServices")
+ String begruendung,
+ @WebParam(name = "Target", targetNamespace = "urn:SZRServices")
+ List<FremdBPKRequestType> target)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param basisZahl
+ * @param bpk
+ * @param bereich
+ * @return
+ * returns java.lang.String
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "BPKzuBasiszahl")
+ @WebResult(name = "BPKzuBasiszahlReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "BPKzuBasiszahl", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.BPKzuBasiszahl")
+ @ResponseWrapper(localName = "BPKzuBasiszahlResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.BPKzuBasiszahlResponse")
+ public String bpKzuBasiszahl(
+ @WebParam(name = "Bereich", targetNamespace = "urn:SZRServices")
+ String bereich,
+ @WebParam(name = "BPK", targetNamespace = "urn:SZRServices")
+ String bpk,
+ @WebParam(name = "BasisZahl", targetNamespace = "urn:SZRServices")
+ List<String> basisZahl)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param fremdBPKTargets
+ * @param basisZahl
+ * @param bereich
+ * @return
+ * returns java.util.List<at.gv.util.xsd.szr.BasiszahlZuBPKReturnType>
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "BasiszahlZuBPK")
+ @WebResult(name = "BasiszahlZuBPKReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "BasiszahlZuBPK", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.BasiszahlZuBPK")
+ @ResponseWrapper(localName = "BasiszahlZuBPKResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.BasiszahlZuBPKResponse")
+ public List<BasiszahlZuBPKReturnType> basiszahlZuBPK(
+ @WebParam(name = "BasisZahl", targetNamespace = "urn:SZRServices")
+ List<String> basisZahl,
+ @WebParam(name = "Bereich", targetNamespace = "urn:SZRServices")
+ String bereich,
+ @WebParam(name = "FremdBPKTargets", targetNamespace = "urn:SZRServices")
+ List<FremdBPKRequestType> fremdBPKTargets)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param zmRfremdbPK
+ * @param fremdBPKTargets
+ * @param bereich
+ * @return
+ * returns java.util.List<at.gv.util.xsd.szr.ZMRAnwendungsIntegrationReturnType>
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "ZMRAnwendungsIntegration")
+ @WebResult(name = "ZMRAnwendungsIntegrationReturn", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "ZMRAnwendungsIntegration", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.ZMRAnwendungsIntegration")
+ @ResponseWrapper(localName = "ZMRAnwendungsIntegrationResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.ZMRAnwendungsIntegrationResponse")
+ public List<ZMRAnwendungsIntegrationReturnType> zmrAnwendungsIntegration(
+ @WebParam(name = "Bereich", targetNamespace = "urn:SZRServices")
+ String bereich,
+ @WebParam(name = "FremdBPKTargets", targetNamespace = "urn:SZRServices")
+ List<FremdBPKRequestType> fremdBPKTargets,
+ @WebParam(name = "ZMRfremdbPK", targetNamespace = "urn:SZRServices")
+ List<String> zmRfremdbPK)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param personInfo
+ * @return
+ * returns java.lang.String
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "GetStammzahl")
+ @WebResult(name = "Stammzahl", targetNamespace = "urn:SZRServices")
+ @RequestWrapper(localName = "GetStammzahl", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetStammzahl")
+ @ResponseWrapper(localName = "GetStammzahlResponse", targetNamespace = "urn:SZRServices", className = "at.gv.util.xsd.szr.GetStammzahlResponse")
+ public String getStammzahl(
+ @WebParam(name = "PersonInfo", targetNamespace = "urn:SZRServices")
+ PersonInfoType personInfo)
+ throws SZRException
+ ;
+
+ /**
+ *
+ * @param parameters
+ * @return
+ * returns at.gv.util.xsd.szr.GetVersionResponse
+ * @throws SZRException
+ */
+ @WebMethod(operationName = "GetVersion")
+ @WebResult(name = "GetVersionResponse", targetNamespace = "urn:SZRServices", partName = "parameters")
+ @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+ public GetVersionResponse getVersion(
+ @WebParam(name = "GetVersion", targetNamespace = "urn:SZRServices", partName = "parameters")
+ Object parameters)
+ throws SZRException
+ ;
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/szr/SZRException.java b/src/main/java/at/gv/util/wsdl/szr/SZRException.java
new file mode 100644
index 0000000..f8bdf70
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/szr/SZRException.java
@@ -0,0 +1,54 @@
+
+package at.gv.util.wsdl.szr;
+
+import javax.xml.ws.WebFault;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebFault(name = "SZRException", targetNamespace = "urn:SZRServices")
+public class SZRException
+ extends Exception
+{
+
+ /**
+ * Java type that goes as soapenv:Fault detail element.
+ *
+ */
+ private at.gv.util.xsd.szr.SZRException faultInfo;
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ */
+ public SZRException(String message, at.gv.util.xsd.szr.SZRException faultInfo) {
+ super(message);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ * @param cause
+ */
+ public SZRException(String message, at.gv.util.xsd.szr.SZRException faultInfo, Throwable cause) {
+ super(message, cause);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @return
+ * returns fault bean: at.gv.util.xsd.szr.SZRException
+ */
+ public at.gv.util.xsd.szr.SZRException getFaultInfo() {
+ return faultInfo;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/szr/SZRService.java b/src/main/java/at/gv/util/wsdl/szr/SZRService.java
new file mode 100644
index 0000000..adc728c
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/szr/SZRService.java
@@ -0,0 +1,93 @@
+
+package at.gv.util.wsdl.szr;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "SZRService", targetNamespace = "urn:SZRServices", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/szr/SZR_v2.0.wsdl")
+public class SZRService
+ extends Service
+{
+
+ private final static URL SZRSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.szr.SZRService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.szr.SZRService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/szr/SZR_v2.0.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/szr/SZR_v2.0.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ SZRSERVICE_WSDL_LOCATION = url;
+ }
+
+ public SZRService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public SZRService() {
+ super(SZRSERVICE_WSDL_LOCATION, new QName("urn:SZRServices", "SZRService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns SZR
+ */
+ @WebEndpoint(name = "SZRTestumgebung")
+ public SZR getSZRTestumgebung() {
+ return super.getPort(new QName("urn:SZRServices", "SZRTestumgebung"), SZR.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns SZR
+ */
+ @WebEndpoint(name = "SZRTestumgebung")
+ public SZR getSZRTestumgebung(WebServiceFeature... features) {
+ return super.getPort(new QName("urn:SZRServices", "SZRTestumgebung"), SZR.class, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns SZR
+ */
+ @WebEndpoint(name = "SZRProduktionsumgebung")
+ public SZR getSZRProduktionsumgebung() {
+ return super.getPort(new QName("urn:SZRServices", "SZRProduktionsumgebung"), SZR.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns SZR
+ */
+ @WebEndpoint(name = "SZRProduktionsumgebung")
+ public SZR getSZRProduktionsumgebung(WebServiceFeature... features) {
+ return super.getPort(new QName("urn:SZRServices", "SZRProduktionsumgebung"), SZR.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/szrgw/SZRGWService.java b/src/main/java/at/gv/util/wsdl/szrgw/SZRGWService.java
new file mode 100644
index 0000000..6a8d173
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/szrgw/SZRGWService.java
@@ -0,0 +1,85 @@
+
+package at.gv.util.wsdl.szrgw;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "SZRGWService", targetNamespace = "http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/szrgw/szrgw.wsdl")
+public class SZRGWService
+ extends Service
+{
+
+ private final static URL SZRGWSERVICE_WSDL_LOCATION;
+ private final static WebServiceException SZRGWSERVICE_EXCEPTION;
+ private final static QName SZRGWSERVICE_QNAME = new QName("http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", "SZRGWService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/szrgw/szrgw.wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ SZRGWSERVICE_WSDL_LOCATION = url;
+ SZRGWSERVICE_EXCEPTION = e;
+ }
+
+ public SZRGWService() {
+ super(__getWsdlLocation(), SZRGWSERVICE_QNAME);
+ }
+
+
+ public SZRGWService(URL wsdlLocation) {
+ super(wsdlLocation, SZRGWSERVICE_QNAME);
+ }
+
+
+ public SZRGWService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+
+ /**
+ *
+ * @return
+ * returns SZRGWType
+ */
+ @WebEndpoint(name = "SZRGWPort")
+ public SZRGWType getSZRGWPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", "SZRGWPort"), SZRGWType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns SZRGWType
+ */
+ @WebEndpoint(name = "SZRGWPort")
+ public SZRGWType getSZRGWPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", "SZRGWPort"), SZRGWType.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (SZRGWSERVICE_EXCEPTION!= null) {
+ throw SZRGWSERVICE_EXCEPTION;
+ }
+ return SZRGWSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/szrgw/SZRGWType.java b/src/main/java/at/gv/util/wsdl/szrgw/SZRGWType.java
new file mode 100644
index 0000000..98d2702
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/szrgw/SZRGWType.java
@@ -0,0 +1,45 @@
+
+package at.gv.util.wsdl.szrgw;
+
+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.srzgw.CreateIdentityLinkRequest;
+import at.gv.util.xsd.srzgw.CreateIdentityLinkResponse;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "SZRGWType", targetNamespace = "http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.srzgw.ObjectFactory.class,
+ at.gv.util.xsd.persondata.ObjectFactory.class,
+ at.gv.util.xsd.mis.ObjectFactory.class,
+ at.gv.util.xsd.saml.assertion.ObjectFactory.class,
+ at.gv.util.xsd.stork.ObjectFactory.class,
+ at.gv.util.xsd.xmldsig.ObjectFactory.class
+})
+public interface SZRGWType {
+
+
+ /**
+ *
+ * @param createIdentityLinkRequest
+ * @return
+ * returns at.gv.util.xsd.srzgw.CreateIdentityLinkResponse
+ */
+ @WebMethod(operationName = "SZRGWOperation", action = "szrgw:SZRGWType#SZRGWOperation")
+ @WebResult(name = "CreateIdentityLinkResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/szrgw/20070807/xsd", partName = "CreateIdentityLinkResponse")
+ public CreateIdentityLinkResponse szrgwOperation(
+ @WebParam(name = "CreateIdentityLinkRequest", targetNamespace = "http://reference.e-government.gv.at/namespace/szrgw/20070807/xsd", partName = "CreateIdentityLinkRequest")
+ CreateIdentityLinkRequest createIdentityLinkRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur/URSuche.java b/src/main/java/at/gv/util/wsdl/ur/URSuche.java
new file mode 100644
index 0000000..a5f46ff
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur/URSuche.java
@@ -0,0 +1,63 @@
+
+package at.gv.util.wsdl.ur;
+
+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.ur.xmlsw.SearchByExampleType;
+import at.gv.util.xsd.ur.xmlsw.SearchByIdType;
+import at.gv.util.xsd.ur.xmlsw.SearchResponseType;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "URSuche", targetNamespace = "urn:at:statistik:udb:ws")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.ur.search.ObjectFactory.class,
+ at.gv.util.xsd.ur.pd.ObjectFactory.class,
+ at.gv.util.xsd.ur.xmlsw.ObjectFactory.class,
+ generated.ObjectFactory.class,
+ at.gv.util.xsd.ur.simpletypes.ObjectFactory.class
+})
+public interface URSuche {
+
+
+ /**
+ * Operation für den Abfragetyp
+ * Search by Example
+ *
+ *
+ * @param body
+ * @return
+ * returns at.gv.util.xsd.ur.xmlsw.SearchResponseType
+ */
+ @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);
+
+ /**
+ * Operation für den Abfragetyp
+ * Search by Id
+ *
+ *
+ * @param body
+ * @return
+ * returns at.gv.util.xsd.ur.xmlsw.SearchResponseType
+ */
+ @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);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur/URSucheService.java b/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
new file mode 100644
index 0000000..672e619
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
@@ -0,0 +1,94 @@
+
+package at.gv.util.wsdl.ur;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "URSucheService", targetNamespace = "urn:at:statistik:udb:ws", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur/URSucheService.wsdl")
+public class URSucheService
+ extends Service
+{
+
+ private final static URL URSUCHESERVICE_WSDL_LOCATION;
+ private final static WebServiceException URSUCHESERVICE_EXCEPTION;
+ private final static QName URSUCHESERVICE_QNAME = new QName("urn:at:statistik:udb:ws", "URSucheService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur/URSucheService.wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ URSUCHESERVICE_WSDL_LOCATION = url;
+ URSUCHESERVICE_EXCEPTION = e;
+ }
+
+ public URSucheService() {
+ super(__getWsdlLocation(), URSUCHESERVICE_QNAME);
+ }
+
+ public URSucheService(WebServiceFeature... features) {
+ super(__getWsdlLocation(), URSUCHESERVICE_QNAME, features);
+ }
+
+ public URSucheService(URL wsdlLocation) {
+ super(wsdlLocation, URSUCHESERVICE_QNAME);
+ }
+
+ public URSucheService(URL wsdlLocation, WebServiceFeature... features) {
+ super(wsdlLocation, URSUCHESERVICE_QNAME, features);
+ }
+
+ public URSucheService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public URSucheService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+ super(wsdlLocation, serviceName, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns URSuche
+ */
+ @WebEndpoint(name = "URSucheService")
+ public URSuche getURSucheService() {
+ return super.getPort(new QName("urn:at:statistik:udb:ws", "URSucheService"), URSuche.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns URSuche
+ */
+ @WebEndpoint(name = "URSucheService")
+ public URSuche getURSucheService(WebServiceFeature... features) {
+ return super.getPort(new QName("urn:at:statistik:udb:ws", "URSucheService"), URSuche.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (URSUCHESERVICE_EXCEPTION!= null) {
+ throw URSUCHESERVICE_EXCEPTION;
+ }
+ return URSUCHESERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur/package-info.java b/src/main/java/at/gv/util/wsdl/ur/package-info.java
new file mode 100644
index 0000000..6a7f40f
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur/package-info.java
@@ -0,0 +1,6 @@
+/**
+ * Dieses WSDL-Dokument beschreibt den
+ * XML-Search-Service.
+ *
+ */
+package at.gv.util.wsdl.ur;
diff --git a/src/main/java/at/gv/util/wsdl/ur_V2/URSuche.java b/src/main/java/at/gv/util/wsdl/ur_V2/URSuche.java
new file mode 100644
index 0000000..ca967e1
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur_V2/URSuche.java
@@ -0,0 +1,62 @@
+
+package at.gv.util.wsdl.ur_V2;
+
+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.ur_V2.xmlsw.SearchByExampleType;
+import at.gv.util.xsd.ur_V2.xmlsw.SearchByIdType;
+import at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "URSuche", targetNamespace = "urn:at:statistik:ur:ws")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ at.gv.util.xsd.ur_V2.pd.ObjectFactory.class,
+ at.gv.util.xsd.ur_V2.search.ObjectFactory.class,
+ at.gv.util.xsd.ur_V2.xmlsw.ObjectFactory.class,
+ at.gv.util.xsd.ur_V2.simpletypes.ObjectFactory.class
+})
+public interface URSuche {
+
+
+ /**
+ * Operation für den Abfragetyp
+ * Search by Example
+ *
+ *
+ * @param body
+ * @return
+ * returns at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType
+ */
+ @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);
+
+ /**
+ * Operation für den Abfragetyp
+ * Search by Id
+ *
+ *
+ * @param body
+ * @return
+ * returns at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType
+ */
+ @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);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur_V2/URSucheService.java b/src/main/java/at/gv/util/wsdl/ur_V2/URSucheService.java
new file mode 100644
index 0000000..da026e4
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur_V2/URSucheService.java
@@ -0,0 +1,94 @@
+
+package at.gv.util.wsdl.ur_V2;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "URSucheService", targetNamespace = "urn:at:statistik:ur:ws", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur_V2/URSucheService.wsdl")
+public class URSucheService
+ extends Service
+{
+
+ private final static URL URSUCHESERVICE_WSDL_LOCATION;
+ private final static WebServiceException URSUCHESERVICE_EXCEPTION;
+ private final static QName URSUCHESERVICE_QNAME = new QName("urn:at:statistik:ur:ws", "URSucheService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur_V2/URSucheService.wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ URSUCHESERVICE_WSDL_LOCATION = url;
+ URSUCHESERVICE_EXCEPTION = e;
+ }
+
+ public URSucheService() {
+ super(__getWsdlLocation(), URSUCHESERVICE_QNAME);
+ }
+
+ public URSucheService(WebServiceFeature... features) {
+ super(__getWsdlLocation(), URSUCHESERVICE_QNAME, features);
+ }
+
+ public URSucheService(URL wsdlLocation) {
+ super(wsdlLocation, URSUCHESERVICE_QNAME);
+ }
+
+ public URSucheService(URL wsdlLocation, WebServiceFeature... features) {
+ super(wsdlLocation, URSUCHESERVICE_QNAME, features);
+ }
+
+ public URSucheService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public URSucheService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+ super(wsdlLocation, serviceName, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns URSuche
+ */
+ @WebEndpoint(name = "URSucheService")
+ public URSuche getURSucheService() {
+ return super.getPort(new QName("urn:at:statistik:ur:ws", "URSucheService"), URSuche.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns URSuche
+ */
+ @WebEndpoint(name = "URSucheService")
+ public URSuche getURSucheService(WebServiceFeature... features) {
+ return super.getPort(new QName("urn:at:statistik:ur:ws", "URSucheService"), URSuche.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (URSUCHESERVICE_EXCEPTION!= null) {
+ throw URSUCHESERVICE_EXCEPTION;
+ }
+ return URSUCHESERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur_V2/package-info.java b/src/main/java/at/gv/util/wsdl/ur_V2/package-info.java
new file mode 100644
index 0000000..7836a77
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur_V2/package-info.java
@@ -0,0 +1,6 @@
+/**
+ * Dieses WSDL-Dokument beschreibt den
+ * XML-Search-Service.
+ *
+ */
+package at.gv.util.wsdl.ur_V2;
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);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/zkopf/BulkService.java b/src/main/java/at/gv/util/wsdl/zkopf/BulkService.java
new file mode 100644
index 0000000..a6b4e30
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zkopf/BulkService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.zkopf;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "BulkService", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zkopf.wsdl")
+public class BulkService
+ extends Service
+{
+
+ private final static URL BULKSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.zkopf.BulkService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.zkopf.BulkService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zkopf.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zkopf.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ BULKSERVICE_WSDL_LOCATION = url;
+ }
+
+ public BulkService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public BulkService() {
+ super(BULKSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl", "BulkService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns BulkPortType
+ */
+ @WebEndpoint(name = "BulkPort")
+ public BulkPortType getBulkPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl", "BulkPort"), BulkPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns BulkPortType
+ */
+ @WebEndpoint(name = "BulkPort")
+ public BulkPortType getBulkPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl", "BulkPort"), BulkPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/zuserech/ClearingPortType.java b/src/main/java/at/gv/util/wsdl/zuserech/ClearingPortType.java
new file mode 100644
index 0000000..3111bf2
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zuserech/ClearingPortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.zuserech;
+
+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.zuserech.ClearingRequestType;
+import at.gv.util.xsd.zuserech.ClearingResponseType;
+import at.gv.util.xsd.zuserech.ObjectFactory;
+
+
+/**
+ * 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 = "ClearingPortType", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface ClearingPortType {
+
+
+ /**
+ *
+ * @param clearingRequest
+ * @return
+ * returns at.gv.util.xsd.zuserech.ClearingResponseType
+ */
+ @WebMethod(operationName = "ClearingOperation", action = "tns:ClearingPortType#ClearingOperation")
+ @WebResult(name = "ClearingResponse", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", partName = "ClearingResponse")
+ public ClearingResponseType clearingOperation(
+ @WebParam(name = "ClearingRequest", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", partName = "ClearingRequest")
+ ClearingRequestType clearingRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/zuserech/ClearingService.java b/src/main/java/at/gv/util/wsdl/zuserech/ClearingService.java
new file mode 100644
index 0000000..e976187
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zuserech/ClearingService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.zuserech;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "ClearingService", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl")
+public class ClearingService
+ extends Service
+{
+
+ private final static URL CLEARINGSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.zuserech.ClearingService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.zuserech.ClearingService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ CLEARINGSERVICE_WSDL_LOCATION = url;
+ }
+
+ public ClearingService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public ClearingService() {
+ super(CLEARINGSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ClearingService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns ClearingPortType
+ */
+ @WebEndpoint(name = "ClearingPort")
+ public ClearingPortType getClearingPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ClearingPort"), ClearingPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns ClearingPortType
+ */
+ @WebEndpoint(name = "ClearingPort")
+ public ClearingPortType getClearingPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ClearingPort"), ClearingPortType.class, features);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenPortType.java b/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenPortType.java
new file mode 100644
index 0000000..672877d
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenPortType.java
@@ -0,0 +1,41 @@
+
+package at.gv.util.wsdl.zuserech;
+
+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.zuserech.ObjectFactory;
+import at.gv.util.xsd.zuserech.ValidateTokenRequest;
+import at.gv.util.xsd.zuserech.ValidateTokenResponse;
+
+
+/**
+ * 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 = "ValidateTokenPortType", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface ValidateTokenPortType {
+
+
+ /**
+ *
+ * @param validateTokenRequest
+ * @return
+ * returns at.gv.util.xsd.zuserech.ValidateTokenResponse
+ */
+ @WebMethod(operationName = "ValidateTokenOperation", action = "tns:ValidateTokenPortType#ValidateTokenOperation")
+ @WebResult(name = "ValidateTokenResponse", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", partName = "ValidateTokenResponse")
+ public ValidateTokenResponse validateTokenOperation(
+ @WebParam(name = "ValidateTokenRequest", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", partName = "ValidateTokenRequest")
+ ValidateTokenRequest validateTokenRequest);
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenService.java b/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenService.java
new file mode 100644
index 0000000..91b59f4
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/zuserech/ValidateTokenService.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.wsdl.zuserech;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.6 in JDK 6
+ * Generated source version: 2.1
+ *
+ */
+@WebServiceClient(name = "ValidateTokenService", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", wsdlLocation = "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl")
+public class ValidateTokenService
+ extends Service
+{
+
+ private final static URL VALIDATETOKENSERVICE_WSDL_LOCATION;
+ private final static Logger logger = Logger.getLogger(at.gv.util.wsdl.zuserech.ValidateTokenService.class.getName());
+
+ static {
+ URL url = null;
+ try {
+ URL baseUrl;
+ baseUrl = at.gv.util.wsdl.zuserech.ValidateTokenService.class.getResource(".");
+ url = new URL(baseUrl, "file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl");
+ } catch (MalformedURLException e) {
+ logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/eclipse/development/egovutils/src/main/resources/wsdl/zkopf/zuserech.wsdl', retrying as a local file");
+ logger.warning(e.getMessage());
+ }
+ VALIDATETOKENSERVICE_WSDL_LOCATION = url;
+ }
+
+ public ValidateTokenService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public ValidateTokenService() {
+ super(VALIDATETOKENSERVICE_WSDL_LOCATION, new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ValidateTokenService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns ValidateTokenPortType
+ */
+ @WebEndpoint(name = "ValidateTokenPort")
+ public ValidateTokenPortType getValidateTokenPort() {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ValidateTokenPort"), ValidateTokenPortType.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns ValidateTokenPortType
+ */
+ @WebEndpoint(name = "ValidateTokenPort")
+ public ValidateTokenPortType getValidateTokenPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl", "ValidateTokenPort"), ValidateTokenPortType.class, features);
+ }
+
+}