From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../at/gv/util/wsdl/IdentificationPortType.java | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/main/java/at/gv/util/wsdl/IdentificationPortType.java (limited to 'src/main/java/at/gv/util/wsdl/IdentificationPortType.java') 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 + ; + +} -- cgit v1.2.3