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

no.nav.tjeneste.virksomhet.sak.v1.binding.SakV1_Service Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version

package no.nav.tjeneste.virksomhet.sak.v1.binding;

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.9-b14002
 * Generated source version: 2.2
 * 
 */
@WebServiceClient(name = "Sak_v1", targetNamespace = "http://nav.no/tjeneste/virksomhet/sak/v1/Binding", wsdlLocation = "file:/home/travis/build/navikt/tjenestespesifikasjoner/nav-fim-sak-v1-tjenestespesifikasjon/src/main/wsdl/no/nav/tjeneste/virksomhet/sak/v1/Binding.wsdl")
public class SakV1_Service
    extends Service
{

    private final static URL SAKV1_WSDL_LOCATION;
    private final static WebServiceException SAKV1_EXCEPTION;
    private final static QName SAKV1_QNAME = new QName("http://nav.no/tjeneste/virksomhet/sak/v1/Binding", "Sak_v1");

    static {
        URL url = null;
        WebServiceException e = null;
        try {
            url = new URL("file:/home/travis/build/navikt/tjenestespesifikasjoner/nav-fim-sak-v1-tjenestespesifikasjon/src/main/wsdl/no/nav/tjeneste/virksomhet/sak/v1/Binding.wsdl");
        } catch (MalformedURLException ex) {
            e = new WebServiceException(ex);
        }
        SAKV1_WSDL_LOCATION = url;
        SAKV1_EXCEPTION = e;
    }

    public SakV1_Service() {
        super(__getWsdlLocation(), SAKV1_QNAME);
    }

    public SakV1_Service(WebServiceFeature... features) {
        super(__getWsdlLocation(), SAKV1_QNAME, features);
    }

    public SakV1_Service(URL wsdlLocation) {
        super(wsdlLocation, SAKV1_QNAME);
    }

    public SakV1_Service(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, SAKV1_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns SakV1
     */
    @WebEndpoint(name = "Sak_v1Port")
    public SakV1 getSakV1Port() {
        return super.getPort(new QName("http://nav.no/tjeneste/virksomhet/sak/v1/Binding", "Sak_v1Port"), SakV1.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 SakV1
     */
    @WebEndpoint(name = "Sak_v1Port")
    public SakV1 getSakV1Port(WebServiceFeature... features) {
        return super.getPort(new QName("http://nav.no/tjeneste/virksomhet/sak/v1/Binding", "Sak_v1Port"), SakV1.class, features);
    }

    private static URL __getWsdlLocation() {
        if (SAKV1_EXCEPTION!= null) {
            throw SAKV1_EXCEPTION;
        }
        return SAKV1_WSDL_LOCATION;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy