All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.gxserver.client.services.teamwork.TeamWorkService2 Maven / Gradle / Ivy

The newest version!

package com.genexus.gxserver.client.services.teamwork;

import java.net.URL;
import javax.xml.namespace.QName;
import jakarta.jws.HandlerChain;
import jakarta.xml.ws.Service;
import jakarta.xml.ws.WebEndpoint;
import jakarta.xml.ws.WebServiceClient;
import jakarta.xml.ws.WebServiceException;
import jakarta.xml.ws.WebServiceFeature;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 3.0.1
 * Generated source version: 3.0
 * 
 */
@WebServiceClient(name = "TeamWorkService2", targetNamespace = "http://tempuri.org/", wsdlLocation = "/META-INF/wsdl/TeamWorkService2.svc.singlewsdl.wsdl")
@HandlerChain(file = "TeamWorkService2_handler.xml")
public class TeamWorkService2
    extends Service
{

    private final static URL TEAMWORKSERVICE2_WSDL_LOCATION;
    private final static WebServiceException TEAMWORKSERVICE2_EXCEPTION;
    private final static QName TEAMWORKSERVICE2_QNAME = new QName("http://tempuri.org/", "TeamWorkService2");

    static {
        TEAMWORKSERVICE2_WSDL_LOCATION = com.genexus.gxserver.client.services.teamwork.TeamWorkService2 .class.getResource("/META-INF/wsdl/TeamWorkService2.svc.singlewsdl.wsdl");
        WebServiceException e = null;
        if (TEAMWORKSERVICE2_WSDL_LOCATION == null) {
            e = new WebServiceException("Cannot find '/META-INF/wsdl/TeamWorkService2.svc.singlewsdl.wsdl' wsdl. Place the resource correctly in the classpath.");
        }
        TEAMWORKSERVICE2_EXCEPTION = e;
    }

    public TeamWorkService2() {
        super(__getWsdlLocation(), TEAMWORKSERVICE2_QNAME);
    }

    public TeamWorkService2(WebServiceFeature... features) {
        super(__getWsdlLocation(), TEAMWORKSERVICE2_QNAME, features);
    }

    public TeamWorkService2(URL wsdlLocation) {
        super(wsdlLocation, TEAMWORKSERVICE2_QNAME);
    }

    public TeamWorkService2(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, TEAMWORKSERVICE2_QNAME, features);
    }

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

    public TeamWorkService2(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
        super(wsdlLocation, serviceName, features);
    }

    /**
     * 
     * @return
     *     returns ITeamWorkService2
     */
    @WebEndpoint(name = "CustomBinding_ITeamWorkService2")
    public ITeamWorkService2 getCustomBindingITeamWorkService2() {
        return super.getPort(new QName("http://tempuri.org/", "CustomBinding_ITeamWorkService2"), ITeamWorkService2.class);
    }

    /**
     * 
     * @param features
     *     A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the features parameter will have their default values.
     * @return
     *     returns ITeamWorkService2
     */
    @WebEndpoint(name = "CustomBinding_ITeamWorkService2")
    public ITeamWorkService2 getCustomBindingITeamWorkService2(WebServiceFeature... features) {
        return super.getPort(new QName("http://tempuri.org/", "CustomBinding_ITeamWorkService2"), ITeamWorkService2.class, features);
    }

    private static URL __getWsdlLocation() {
        if (TEAMWORKSERVICE2_EXCEPTION!= null) {
            throw TEAMWORKSERVICE2_EXCEPTION;
        }
        return TEAMWORKSERVICE2_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy