package at.gv.util.wsdl;

import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.Service;

/**
 * This class was generated by Apache CXF 3.0.1
 * 2014-10-28T17:46:23.751+01:00
 * Generated source version: 3.0.1
 * 
 */
@WebServiceClient(name = "GetAuthenticationDataService", 
                  wsdlLocation = "./src/main/resources/wsdl/MOA-ID-1.x.wsdl",
                  targetNamespace = "http://reference.e-government.gv.at/namespace/moa/20020822#") 
public class GetAuthenticationDataService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("http://reference.e-government.gv.at/namespace/moa/20020822#", "GetAuthenticationDataService");
    public final static QName IdentificationPort = new QName("http://reference.e-government.gv.at/namespace/moa/20020822#", "IdentificationPort");
    static {
        URL url = GetAuthenticationDataService.class.getResource("./src/main/resources/wsdl/MOA-ID-1.x.wsdl");
        if (url == null) {
            url = GetAuthenticationDataService.class.getClassLoader().getResource("./src/main/resources/wsdl/MOA-ID-1.x.wsdl");
        } 
        if (url == null) {
            java.util.logging.Logger.getLogger(GetAuthenticationDataService.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "./src/main/resources/wsdl/MOA-ID-1.x.wsdl");
        }       
        WSDL_LOCATION = url;
    }

    public GetAuthenticationDataService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }

    public GetAuthenticationDataService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public GetAuthenticationDataService() {
        super(WSDL_LOCATION, SERVICE);
    }
    
    //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
    //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
    //compliant code instead.
    public GetAuthenticationDataService(WebServiceFeature ... features) {
        super(WSDL_LOCATION, SERVICE, features);
    }

    //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
    //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
    //compliant code instead.
    public GetAuthenticationDataService(URL wsdlLocation, WebServiceFeature ... features) {
        super(wsdlLocation, SERVICE, features);
    }

    //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
    //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
    //compliant code instead.
    public GetAuthenticationDataService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
        super(wsdlLocation, serviceName, features);
    }    

    /**
     *
     * @return
     *     returns IdentificationPortType
     */
    @WebEndpoint(name = "IdentificationPort")
    public IdentificationPortType getIdentificationPort() {
        return super.getPort(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(IdentificationPort, IdentificationPortType.class, features);
    }

}