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

com.genexus.gxserver.client.services.helper.ServerHelper Maven / Gradle / Ivy

The newest version!

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

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 = "ServerHelper", targetNamespace = "http://tempuri.org/", wsdlLocation = "/META-INF/wsdl/HelperService.svc.singlewsdl.wsdl")
@HandlerChain(file = "ServerHelper_handler.xml")
public class ServerHelper
    extends Service
{

    private final static URL SERVERHELPER_WSDL_LOCATION;
    private final static WebServiceException SERVERHELPER_EXCEPTION;
    private final static QName SERVERHELPER_QNAME = new QName("http://tempuri.org/", "ServerHelper");

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

    public ServerHelper() {
        super(__getWsdlLocation(), SERVERHELPER_QNAME);
    }

    public ServerHelper(WebServiceFeature... features) {
        super(__getWsdlLocation(), SERVERHELPER_QNAME, features);
    }

    public ServerHelper(URL wsdlLocation) {
        super(wsdlLocation, SERVERHELPER_QNAME);
    }

    public ServerHelper(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, SERVERHELPER_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns IServerHelper
     */
    @WebEndpoint(name = "BasicHttpBinding_IServerHelper")
    public IServerHelper getBasicHttpBindingIServerHelper() {
        return super.getPort(new QName("http://tempuri.org/", "BasicHttpBinding_IServerHelper"), IServerHelper.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 IServerHelper
     */
    @WebEndpoint(name = "BasicHttpBinding_IServerHelper")
    public IServerHelper getBasicHttpBindingIServerHelper(WebServiceFeature... features) {
        return super.getPort(new QName("http://tempuri.org/", "BasicHttpBinding_IServerHelper"), IServerHelper.class, features);
    }

    /**
     * 
     * @return
     *     returns IServerHelper
     */
    @WebEndpoint(name = "CustomBinding_IServerHelper")
    public IServerHelper getCustomBindingIServerHelper() {
        return super.getPort(new QName("http://tempuri.org/", "CustomBinding_IServerHelper"), IServerHelper.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 IServerHelper
     */
    @WebEndpoint(name = "CustomBinding_IServerHelper")
    public IServerHelper getCustomBindingIServerHelper(WebServiceFeature... features) {
        return super.getPort(new QName("http://tempuri.org/", "CustomBinding_IServerHelper"), IServerHelper.class, features);
    }

    private static URL __getWsdlLocation() {
        if (SERVERHELPER_EXCEPTION!= null) {
            throw SERVERHELPER_EXCEPTION;
        }
        return SERVERHELPER_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy