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

ihe.iti.xcpd._2009.RespondingGatewayService Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version

package ihe.iti.xcpd._2009;

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


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.6b21 
 * Generated source version: 2.2
 * 
 */
@WebServiceClient(name = "RespondingGateway_Service", targetNamespace = "urn:ihe:iti:xcpd:2009", wsdlLocation = "file:/Users/rahulsomasunderam/src/ihe-iti/src/main/resources/iti/wsdl/XCPDRespondingGateway.wsdl")
public class RespondingGatewayService
    extends Service
{

    private final static URL RESPONDINGGATEWAYSERVICE_WSDL_LOCATION;
    private final static WebServiceException RESPONDINGGATEWAYSERVICE_EXCEPTION;
    private final static QName RESPONDINGGATEWAYSERVICE_QNAME = new QName("urn:ihe:iti:xcpd:2009", "RespondingGateway_Service");

    static {
        URL url = null;
        WebServiceException e = null;
        try {
            url = new URL("file:/Users/rahulsomasunderam/src/ihe-iti/src/main/resources/iti/wsdl/XCPDRespondingGateway.wsdl");
        } catch (MalformedURLException ex) {
            e = new WebServiceException(ex);
        }
        RESPONDINGGATEWAYSERVICE_WSDL_LOCATION = url;
        RESPONDINGGATEWAYSERVICE_EXCEPTION = e;
    }

    public RespondingGatewayService() {
        super(__getWsdlLocation(), RESPONDINGGATEWAYSERVICE_QNAME);
    }

    public RespondingGatewayService(WebServiceFeature... features) {
        super(__getWsdlLocation(), RESPONDINGGATEWAYSERVICE_QNAME, features);
    }

    public RespondingGatewayService(URL wsdlLocation) {
        super(wsdlLocation, RESPONDINGGATEWAYSERVICE_QNAME);
    }

    public RespondingGatewayService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, RESPONDINGGATEWAYSERVICE_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns RespondingGatewayPortType
     */
    @WebEndpoint(name = "RespondingGateway_Port_Soap12")
    public RespondingGatewayPortType getRespondingGatewayPortSoap12() {
        return super.getPort(new QName("urn:ihe:iti:xcpd:2009", "RespondingGateway_Port_Soap12"), RespondingGatewayPortType.class);
    }

    /**
     * 
     * @param features
     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the features parameter will have their default values.
     * @return
     *     returns RespondingGatewayPortType
     */
    @WebEndpoint(name = "RespondingGateway_Port_Soap12")
    public RespondingGatewayPortType getRespondingGatewayPortSoap12(WebServiceFeature... features) {
        return super.getPort(new QName("urn:ihe:iti:xcpd:2009", "RespondingGateway_Port_Soap12"), RespondingGatewayPortType.class, features);
    }

    private static URL __getWsdlLocation() {
        if (RESPONDINGGATEWAYSERVICE_EXCEPTION!= null) {
            throw RESPONDINGGATEWAYSERVICE_EXCEPTION;
        }
        return RESPONDINGGATEWAYSERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy