
wssec.wssec10.PingService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-systests-ws-security Show documentation
Show all versions of cxf-systests-ws-security Show documentation
Apache CXF WS-Security System Tests
package wssec.wssec10;
import java.net.MalformedURLException;
import java.net.URL;
import javax.annotation.Generated;
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.7
* 2016-07-26T13:15:05.634-04:00
* Generated source version: 3.1.7
*
*/
@WebServiceClient(name = "PingService",
wsdlLocation = "file:/Users/dkulp/working/cxf-branches/target/checkout/systests/ws-security/src/test/resources/wsdl_systest_wssec/wssec10/WsSecurity10.wsdl",
targetNamespace = "http://WSSec/wssec10")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00", comments = "Apache CXF 3.1.7")
public class PingService extends Service {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static URL WSDL_LOCATION;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static QName SERVICE = new QName("http://WSSec/wssec10", "PingService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static QName UserNameOverTransportIPingService = new QName("http://WSSec/wssec10", "UserNameOverTransport_IPingService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static QName UserNameIPingService = new QName("http://WSSec/wssec10", "UserName_IPingService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static QName MutualCertificate10SignEncryptIPingService = new QName("http://WSSec/wssec10", "MutualCertificate10SignEncrypt_IPingService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public final static QName MutualCertificate10SignEncryptRsa15TripleDesIPingService = new QName("http://WSSec/wssec10", "MutualCertificate10SignEncryptRsa15TripleDes_IPingService");
static {
URL url = null;
try {
url = new URL("file:/Users/dkulp/working/cxf-branches/target/checkout/systests/ws-security/src/test/resources/wsdl_systest_wssec/wssec10/WsSecurity10.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(PingService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/Users/dkulp/working/cxf-branches/target/checkout/systests/ws-security/src/test/resources/wsdl_systest_wssec/wssec10/WsSecurity10.wsdl");
}
WSDL_LOCATION = url;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService() {
super(WSDL_LOCATION, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public PingService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns IPingService
*/
@WebEndpoint(name = "UserNameOverTransport_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getUserNameOverTransportIPingService() {
return super.getPort(UserNameOverTransportIPingService, IPingService.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 IPingService
*/
@WebEndpoint(name = "UserNameOverTransport_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getUserNameOverTransportIPingService(WebServiceFeature... features) {
return super.getPort(UserNameOverTransportIPingService, IPingService.class, features);
}
/**
*
* @return
* returns IPingService
*/
@WebEndpoint(name = "UserName_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getUserNameIPingService() {
return super.getPort(UserNameIPingService, IPingService.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 IPingService
*/
@WebEndpoint(name = "UserName_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getUserNameIPingService(WebServiceFeature... features) {
return super.getPort(UserNameIPingService, IPingService.class, features);
}
/**
*
* @return
* returns IPingService
*/
@WebEndpoint(name = "MutualCertificate10SignEncrypt_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getMutualCertificate10SignEncryptIPingService() {
return super.getPort(MutualCertificate10SignEncryptIPingService, IPingService.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 IPingService
*/
@WebEndpoint(name = "MutualCertificate10SignEncrypt_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getMutualCertificate10SignEncryptIPingService(WebServiceFeature... features) {
return super.getPort(MutualCertificate10SignEncryptIPingService, IPingService.class, features);
}
/**
*
* @return
* returns IPingService
*/
@WebEndpoint(name = "MutualCertificate10SignEncryptRsa15TripleDes_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getMutualCertificate10SignEncryptRsa15TripleDesIPingService() {
return super.getPort(MutualCertificate10SignEncryptRsa15TripleDesIPingService, IPingService.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 IPingService
*/
@WebEndpoint(name = "MutualCertificate10SignEncryptRsa15TripleDes_IPingService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2016-07-26T13:15:05.634-04:00")
public IPingService getMutualCertificate10SignEncryptRsa15TripleDesIPingService(WebServiceFeature... features) {
return super.getPort(MutualCertificate10SignEncryptRsa15TripleDesIPingService, IPingService.class, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy