![JAR search and dependency download from the Maven repository](/logo.png)
no.nav.tjeneste.virksomhet.notat.v1.binding.NotatV1 Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.notat.v1.binding;
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.6
* 2019-05-31T12:26:01.115Z
* Generated source version: 3.1.6
*
*/
@WebServiceClient(name = "Notat_v1",
wsdlLocation = "file:/home/travis/build/navikt/tjenestespesifikasjoner/notat-tjenestespesifikasjon/src/main/wsdl/notat/Binding.wsdl",
targetNamespace = "http://nav.no/tjeneste/virksomhet/notat/v1/Binding")
public class NotatV1 extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://nav.no/tjeneste/virksomhet/notat/v1/Binding", "Notat_v1");
public final static QName NotatV1Port = new QName("http://nav.no/tjeneste/virksomhet/notat/v1/Binding", "notat_v1Port");
static {
URL url = null;
try {
url = new URL("file:/home/travis/build/navikt/tjenestespesifikasjoner/notat-tjenestespesifikasjon/src/main/wsdl/notat/Binding.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(NotatV1.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/home/travis/build/navikt/tjenestespesifikasjoner/notat-tjenestespesifikasjon/src/main/wsdl/notat/Binding.wsdl");
}
WSDL_LOCATION = url;
}
public NotatV1(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public NotatV1(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public NotatV1() {
super(WSDL_LOCATION, SERVICE);
}
public NotatV1(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public NotatV1(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public NotatV1(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns NotatV1
*/
@WebEndpoint(name = "notat_v1Port")
public no.nav.tjeneste.virksomhet.notat.v1.NotatV1 getNotatV1Port() {
return super.getPort(NotatV1Port, no.nav.tjeneste.virksomhet.notat.v1.NotatV1.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 NotatV1
*/
@WebEndpoint(name = "notat_v1Port")
public no.nav.tjeneste.virksomhet.notat.v1.NotatV1 getNotatV1Port(WebServiceFeature... features) {
return super.getPort(NotatV1Port, no.nav.tjeneste.virksomhet.notat.v1.NotatV1.class, features);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy