📄 helloservicesoapbindingskeleton.java
字号:
/**
* HelloServiceSoapBindingSkeleton.java
*
* This file was auto-generated from WSDL
* by the Apache Axis WSDL2Java emitter.
*/
package com.liuyang.axis.server;
public class HelloServiceSoapBindingSkeleton implements com.liuyang.axis.server.HelloService, org.apache.axis.wsdl.Skeleton {
private com.liuyang.axis.server.HelloService impl;
private static java.util.Map _myOperations = new java.util.Hashtable();
private static java.util.Collection _myOperationsList = new java.util.ArrayList();
/**
* Returns List of OperationDesc objects with this name
*/
public static java.util.List getOperationDescByName(java.lang.String methodName) {
return (java.util.List)_myOperations.get(methodName);
}
/**
* Returns Collection of OperationDescs
*/
public static java.util.Collection getOperationDescs() {
return _myOperationsList;
}
static {
org.apache.axis.description.OperationDesc _oper;
org.apache.axis.description.FaultDesc _fault;
org.apache.axis.description.ParameterDesc [] _params;
_params = new org.apache.axis.description.ParameterDesc [] {
new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "name"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false),
};
_oper = new org.apache.axis.description.OperationDesc("sayHello", _params, new javax.xml.namespace.QName("", "sayHelloReturn"));
_oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
_oper.setElementQName(new javax.xml.namespace.QName("http://server.axis.liuyang.com", "sayHello"));
_oper.setSoapAction("");
_myOperationsList.add(_oper);
if (_myOperations.get("sayHello") == null) {
_myOperations.put("sayHello", new java.util.ArrayList());
}
((java.util.List)_myOperations.get("sayHello")).add(_oper);
}
public HelloServiceSoapBindingSkeleton() {
this.impl = new com.liuyang.axis.server.HelloServiceSoapBindingImpl();
}
public HelloServiceSoapBindingSkeleton(com.liuyang.axis.server.HelloService impl) {
this.impl = impl;
}
public java.lang.String sayHello(java.lang.String name) throws java.rmi.RemoteException
{
java.lang.String ret = impl.sayHello(name);
return ret;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -