summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/wsdl
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
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')
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java (renamed from src/main/java/at/gv/util/wsdl/ur/URSuche.java)33
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V5/URSucheService.java (renamed from src/main/java/at/gv/util/wsdl/ur/URSucheService.java)24
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V5/XmlSwFault.java55
-rw-r--r--src/main/java/at/gv/util/wsdl/ur_V5/package-info.java (renamed from src/main/java/at/gv/util/wsdl/ur/package-info.java)2
4 files changed, 93 insertions, 21 deletions
diff --git a/src/main/java/at/gv/util/wsdl/ur/URSuche.java b/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
index a5f46ff..1d0e99d 100644
--- a/src/main/java/at/gv/util/wsdl/ur/URSuche.java
+++ b/src/main/java/at/gv/util/wsdl/ur_V5/URSuche.java
@@ -1,5 +1,5 @@
-package at.gv.util.wsdl.ur;
+package at.gv.util.wsdl.ur_V5;
import javax.jws.WebMethod;
import javax.jws.WebParam;
@@ -7,9 +7,9 @@ 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;
+import at.gv.util.xsd.ur_V5.xmlsw.SearchByExampleType;
+import at.gv.util.xsd.ur_V5.xmlsw.SearchByIdType;
+import at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType;
/**
@@ -18,14 +18,13 @@ import at.gv.util.xsd.ur.xmlsw.SearchResponseType;
* Generated source version: 2.2
*
*/
-@WebService(name = "URSuche", targetNamespace = "urn:at:statistik:udb:ws")
+@WebService(name = "URSuche", targetNamespace = "urn:at:statistik:ur: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
+ at.gv.util.xsd.ur_V5.pd.ObjectFactory.class,
+ at.gv.util.xsd.ur_V5.search.ObjectFactory.class,
+ at.gv.util.xsd.ur_V5.xmlsw.ObjectFactory.class,
+ at.gv.util.xsd.ur_V5.simpletypes.ObjectFactory.class
})
public interface URSuche {
@@ -37,13 +36,16 @@ public interface URSuche {
*
* @param body
* @return
- * returns at.gv.util.xsd.ur.xmlsw.SearchResponseType
+ * returns at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType
+ * @throws XmlSwFault
*/
@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);
+ SearchByExampleType body)
+ throws XmlSwFault
+ ;
/**
* Operation für den Abfragetyp
@@ -52,12 +54,15 @@ public interface URSuche {
*
* @param body
* @return
- * returns at.gv.util.xsd.ur.xmlsw.SearchResponseType
+ * returns at.gv.util.xsd.ur_V5.xmlsw.SearchResponseType
+ * @throws XmlSwFault
*/
@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);
+ SearchByIdType body)
+ throws XmlSwFault
+ ;
}
diff --git a/src/main/java/at/gv/util/wsdl/ur/URSucheService.java b/src/main/java/at/gv/util/wsdl/ur_V5/URSucheService.java
index 6168ae3..8f039c3 100644
--- a/src/main/java/at/gv/util/wsdl/ur/URSucheService.java
+++ b/src/main/java/at/gv/util/wsdl/ur_V5/URSucheService.java
@@ -1,5 +1,5 @@
-package at.gv.util.wsdl.ur;
+package at.gv.util.wsdl.ur_V5;
import java.net.MalformedURLException;
import java.net.URL;
@@ -17,20 +17,20 @@ import javax.xml.ws.WebServiceFeature;
* 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")
+@WebServiceClient(name = "URSucheService", targetNamespace = "urn:at:statistik:ur:ws", wsdlLocation = "file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur_V5/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");
+ 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/URSucheService.wsdl");
+ url = new URL("file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/ur_V5/URSucheService.wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
@@ -42,14 +42,26 @@ public class 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
@@ -57,7 +69,7 @@ public class URSucheService
*/
@WebEndpoint(name = "URSucheService")
public URSuche getURSucheService() {
- return super.getPort(new QName("urn:at:statistik:udb:ws", "URSucheService"), URSuche.class);
+ return super.getPort(new QName("urn:at:statistik:ur:ws", "URSucheService"), URSuche.class);
}
/**
@@ -69,7 +81,7 @@ public class URSucheService
*/
@WebEndpoint(name = "URSucheService")
public URSuche getURSucheService(WebServiceFeature... features) {
- return super.getPort(new QName("urn:at:statistik:udb:ws", "URSucheService"), URSuche.class, features);
+ return super.getPort(new QName("urn:at:statistik:ur:ws", "URSucheService"), URSuche.class, features);
}
private static URL __getWsdlLocation() {
diff --git a/src/main/java/at/gv/util/wsdl/ur_V5/XmlSwFault.java b/src/main/java/at/gv/util/wsdl/ur_V5/XmlSwFault.java
new file mode 100644
index 0000000..2f1ee37
--- /dev/null
+++ b/src/main/java/at/gv/util/wsdl/ur_V5/XmlSwFault.java
@@ -0,0 +1,55 @@
+
+package at.gv.util.wsdl.ur_V5;
+
+import javax.xml.ws.WebFault;
+import at.gv.util.xsd.ur_V5.xmlsw.CustomFaultType;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ *
+ */
+@WebFault(name = "XmlSwFault", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#")
+public class XmlSwFault
+ extends Exception
+{
+
+ /**
+ * Java type that goes as soapenv:Fault detail element.
+ *
+ */
+ private CustomFaultType faultInfo;
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ */
+ public XmlSwFault(String message, CustomFaultType faultInfo) {
+ super(message);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @param message
+ * @param faultInfo
+ * @param cause
+ */
+ public XmlSwFault(String message, CustomFaultType faultInfo, Throwable cause) {
+ super(message, cause);
+ this.faultInfo = faultInfo;
+ }
+
+ /**
+ *
+ * @return
+ * returns fault bean: at.gv.util.xsd.ur_V5.xmlsw.CustomFaultType
+ */
+ public CustomFaultType getFaultInfo() {
+ return faultInfo;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/wsdl/ur/package-info.java b/src/main/java/at/gv/util/wsdl/ur_V5/package-info.java
index 6a7f40f..847ecd4 100644
--- a/src/main/java/at/gv/util/wsdl/ur/package-info.java
+++ b/src/main/java/at/gv/util/wsdl/ur_V5/package-info.java
@@ -3,4 +3,4 @@
* XML-Search-Service.
*
*/
-package at.gv.util.wsdl.ur;
+package at.gv.util.wsdl.ur_V5;