You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GANTRY_PASS_ALL/.svn/pristine/61/6172ddb767ab95b9a475c5c9447...

96 lines
3.3 KiB
Plaintext

package com.trkf.feemoduleservice;
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-b130926.1035
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "FeeModuleServiceService", targetNamespace = "http://FeeModuleService.trkf.com/", wsdlLocation = "http://10.15.99.78:8081/FeeModuleService/FeeModuleService?wsdl")
public class FeeModuleServiceService
extends Service
{
private final static URL FEEMODULESERVICESERVICE_WSDL_LOCATION;
private final static WebServiceException FEEMODULESERVICESERVICE_EXCEPTION;
private final static QName FEEMODULESERVICESERVICE_QNAME = new QName("http://FeeModuleService.trkf.com/", "FeeModuleServiceService");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("http://10.15.99.78:8080/FeeModuleService/FeeModuleService?wsdl");
//url = new URL("http://10.15.99.78:8081/FeeModuleService/FeeModuleService?wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
FEEMODULESERVICESERVICE_WSDL_LOCATION = url;
FEEMODULESERVICESERVICE_EXCEPTION = e;
}
public FeeModuleServiceService() {
super(__getWsdlLocation(), FEEMODULESERVICESERVICE_QNAME);
}
public FeeModuleServiceService(WebServiceFeature... features) {
super(__getWsdlLocation(), FEEMODULESERVICESERVICE_QNAME, features);
}
public FeeModuleServiceService(URL wsdlLocation) {
super(wsdlLocation, FEEMODULESERVICESERVICE_QNAME);
}
public FeeModuleServiceService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, FEEMODULESERVICESERVICE_QNAME, features);
}
public FeeModuleServiceService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public FeeModuleServiceService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns FeeModuleService
*/
@WebEndpoint(name = "FeeModuleServicePort")
public FeeModuleService getFeeModuleServicePort() {
return super.getPort(new QName("http://FeeModuleService.trkf.com/", "FeeModuleServicePort"), FeeModuleService.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns FeeModuleService
*/
@WebEndpoint(name = "FeeModuleServicePort")
public FeeModuleService getFeeModuleServicePort(WebServiceFeature... features) {
return super.getPort(new QName("http://FeeModuleService.trkf.com/", "FeeModuleServicePort"), FeeModuleService.class, features);
}
private static URL __getWsdlLocation() {
if (FEEMODULESERVICESERVICE_EXCEPTION!= null) {
throw FEEMODULESERVICESERVICE_EXCEPTION;
}
return FEEMODULESERVICESERVICE_WSDL_LOCATION;
}
}