summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
commit107930978eefc7234e99bbccd483f4da3a690c0d (patch)
treefeef5d6db47dada6cb9df3333bebfa8fdb13db29 /src/main/java/at/gv/util/wsdl/ur/URSucheService.java
parent655d20aa34b819720b20165dc6aeea032df224cc (diff)
downloadegovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.gz
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.bz2
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.zip
add UR Client version 5
remove UR Client version 1 change egovutils version to 1.0.5
Diffstat (limited to 'src/main/java/at/gv/util/wsdl/ur/URSucheService.java')
-rw-r--r--src/main/java/at/gv/util/wsdl/ur/URSucheService.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/src/main/java/at/gv/util/wsdl/ur/URSucheService.java b/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
deleted file mode 100644
index 6168ae3..0000000
--- a/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
+++ /dev/null
@@ -1,82 +0,0 @@
-
-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(URL wsdlLocation) {
- super(wsdlLocation, URSUCHESERVICE_QNAME);
- }
-
- public URSucheService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- /**
- *
- * @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;
- }
-
-}