📄 ejbcawsservice.java
字号:
package org.ejbca.core.protocol.ws.client.gen;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;/** * This class was generated by the JAXWS SI. * JAX-WS RI 2.0_01-b59-fcs * Generated source version: 2.0 * */@WebServiceClient(name = "EjbcaWSService", targetNamespace = "http://ws.protocol.core.ejbca.org/", wsdlLocation = "http://localhost:8080/ejbca/ejbcaws/ejbcaws?wsdl")public class EjbcaWSService extends Service{ private final static URL EJBCAWSSERVICE_WSDL_LOCATION; static { URL url = null; try { url = new URL("http://localhost:8080/ejbca/ejbcaws/ejbcaws?wsdl"); } catch (MalformedURLException e) { e.printStackTrace(); } EJBCAWSSERVICE_WSDL_LOCATION = url; } public EjbcaWSService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public EjbcaWSService() { super(EJBCAWSSERVICE_WSDL_LOCATION, new QName("http://ws.protocol.core.ejbca.org/", "EjbcaWSService")); } /** * * @return * returns EjbcaWS */ @WebEndpoint(name = "EjbcaWSPort") public EjbcaWS getEjbcaWSPort() { return super.getPort(new QName("http://ws.protocol.core.ejbca.org/", "EjbcaWSPort"), EjbcaWS.class); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -