no.nav.tjeneste.virksomhet.behandleoppgave.v1.BehandleOppgaveV1_Service Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.behandleoppgave.v1;
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-04-03T21:03:38.637Z
* Generated source version: 3.1.6
*
*/
@WebServiceClient(name = "BehandleOppgave_v1",
wsdlLocation = "file:/home/travis/build/navikt/tjenestespesifikasjoner/behandleoppgave-v1-tjenestespesifikasjon/src/main/wsdl/behandleoppgave/wsdl/BehandleOppgaveV1.wsdl",
targetNamespace = "http://nav.no/tjeneste/virksomhet/behandleoppgave/v1")
public class BehandleOppgaveV1_Service extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://nav.no/tjeneste/virksomhet/behandleoppgave/v1", "BehandleOppgave_v1");
public final static QName BehandleOppgaveV1 = new QName("http://nav.no/tjeneste/virksomhet/behandleoppgave/v1", "BehandleOppgaveV1");
static {
URL url = null;
try {
url = new URL("file:/home/travis/build/navikt/tjenestespesifikasjoner/behandleoppgave-v1-tjenestespesifikasjon/src/main/wsdl/behandleoppgave/wsdl/BehandleOppgaveV1.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(BehandleOppgaveV1_Service.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/home/travis/build/navikt/tjenestespesifikasjoner/behandleoppgave-v1-tjenestespesifikasjon/src/main/wsdl/behandleoppgave/wsdl/BehandleOppgaveV1.wsdl");
}
WSDL_LOCATION = url;
}
public BehandleOppgaveV1_Service(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public BehandleOppgaveV1_Service(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public BehandleOppgaveV1_Service() {
super(WSDL_LOCATION, SERVICE);
}
public BehandleOppgaveV1_Service(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public BehandleOppgaveV1_Service(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public BehandleOppgaveV1_Service(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns BehandleOppgaveV1
*/
@WebEndpoint(name = "BehandleOppgaveV1")
public BehandleOppgaveV1 getBehandleOppgaveV1() {
return super.getPort(BehandleOppgaveV1, BehandleOppgaveV1.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 BehandleOppgaveV1
*/
@WebEndpoint(name = "BehandleOppgaveV1")
public BehandleOppgaveV1 getBehandleOppgaveV1(WebServiceFeature... features) {
return super.getPort(BehandleOppgaveV1, BehandleOppgaveV1.class, features);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy