package tw.com.softleader.otp.ws;
|
|
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.4.4
|
* 2021-09-13T18:34:27.058+08:00
|
* Generated source version: 3.4.4
|
*
|
*/
|
@WebServiceClient(name = "otpWebService",
|
wsdlLocation = "https://vtwlifeopensyssit.pru.intranet.asia:443/pcalife-otp/ws/otpWebService?wsdl",
|
targetNamespace = "http://ws.otp.softleader.com.tw/")
|
public class OtpWebService extends Service {
|
|
public final static URL WSDL_LOCATION;
|
|
public final static QName SERVICE = new QName("http://ws.otp.softleader.com.tw/", "otpWebService");
|
public final static QName OtpWebPort = new QName("http://ws.otp.softleader.com.tw/", "OtpWebServicePort");
|
static {
|
URL url = null;
|
try {
|
url = new URL("https://vtwlifeopensyssit.pru.intranet.asia:443/pcalife-otp/ws/otpWebService?wsdl");
|
} catch (MalformedURLException e) {
|
java.util.logging.Logger.getLogger(OtpWebService.class.getName())
|
.log(java.util.logging.Level.INFO,
|
"Can not initialize the default wsdl from {0}", "https://vtwlifeopensyssit.pru.intranet.asia:443/pcalife-otp/ws/otpWebService?wsdl");
|
}
|
WSDL_LOCATION = url;
|
}
|
|
public OtpWebService(URL wsdlLocation) {
|
super(wsdlLocation, SERVICE);
|
}
|
|
public OtpWebService(URL wsdlLocation, QName serviceName) {
|
super(wsdlLocation, serviceName);
|
}
|
|
public OtpWebService() {
|
super(WSDL_LOCATION, SERVICE);
|
}
|
|
public OtpWebService(WebServiceFeature ... features) {
|
super(WSDL_LOCATION, SERVICE, features);
|
}
|
|
public OtpWebService(URL wsdlLocation, WebServiceFeature ... features) {
|
super(wsdlLocation, SERVICE, features);
|
}
|
|
public OtpWebService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
|
super(wsdlLocation, serviceName, features);
|
}
|
|
|
|
|
/**
|
*
|
* @return
|
* returns OtpWeb
|
*/
|
@WebEndpoint(name = "otpWebPort")
|
public OtpWeb getOtpWebPort() {
|
return super.getPort(OtpWebPort, OtpWeb.class);
|
}
|
|
/**
|
*
|
* @param features
|
* A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
* @return
|
* returns OtpWeb
|
*/
|
@WebEndpoint(name = "otpWebPort")
|
public OtpWeb getOtpWebPort(WebServiceFeature... features) {
|
return super.getPort(OtpWebPort, OtpWeb.class, features);
|
}
|
|
}
|