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

no.nhn.schemas.reg.hprv2.HPRService2 Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version
package no.nhn.schemas.reg.hprv2;

import java.net.MalformedURLException;
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.1.4
 * 2018-12-04T10:41:38.894Z
 * Generated source version: 3.1.4
 * 
 */
@WebServiceClient(name = "HPRService2", 
                  wsdlLocation = "file:/home/travis/build/navikt/tjenestespesifikasjoner/ekstern-helse-helsepersonell-tjenestespesifikasjon/src/main/wsdl/helsepersonell.wsdl",
                  targetNamespace = "http://schemas.nhn.no/reg/HPRv2") 
public class HPRService2 extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("http://schemas.nhn.no/reg/HPRv2", "HPRService2");
    public final static QName BasicHttpBindingIHPR2Service = new QName("http://schemas.nhn.no/reg/HPRv2", "BasicHttpBinding_IHPR2Service");
    static {
        URL url = null;
        try {
            url = new URL("file:/home/travis/build/navikt/tjenestespesifikasjoner/ekstern-helse-helsepersonell-tjenestespesifikasjon/src/main/wsdl/helsepersonell.wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(HPRService2.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "file:/home/travis/build/navikt/tjenestespesifikasjoner/ekstern-helse-helsepersonell-tjenestespesifikasjon/src/main/wsdl/helsepersonell.wsdl");
        }
        WSDL_LOCATION = url;
    }

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

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

    public HPRService2() {
        super(WSDL_LOCATION, SERVICE);
    }
    
    public HPRService2(WebServiceFeature ... features) {
        super(WSDL_LOCATION, SERVICE, features);
    }

    public HPRService2(URL wsdlLocation, WebServiceFeature ... features) {
        super(wsdlLocation, SERVICE, features);
    }

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




    /**
     *
     * @return
     *     returns IHPR2Service
     */
    @WebEndpoint(name = "BasicHttpBinding_IHPR2Service")
    public IHPR2Service getBasicHttpBindingIHPR2Service() {
        return super.getPort(BasicHttpBindingIHPR2Service, IHPR2Service.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 IHPR2Service
     */
    @WebEndpoint(name = "BasicHttpBinding_IHPR2Service")
    public IHPR2Service getBasicHttpBindingIHPR2Service(WebServiceFeature... features) {
        return super.getPort(BasicHttpBindingIHPR2Service, IHPR2Service.class, features);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy