📄 ismpspenginesoapbindingskeleton.java
字号:
/**
* IsmpSpEngineSoapBindingSkeleton.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.
*/
package test.ismp;
public class IsmpSpEngineSoapBindingSkeleton implements test.ismp.IsmpSpEngine, org.apache.axis.wsdl.Skeleton {
private test.ismp.IsmpSpEngine 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("http://sp.ismp.chinatelecom.com", "orderRelationUpdateNotifyReq"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://req.sp.ismp.chinatelecom.com", "OrderRelationUpdateNotifyReq"), com.hbpubinfo.sp.ismp.schema.OrderRelationUpdateNotifyReq.class, false, false),
};
_oper = new org.apache.axis.description.OperationDesc("orderRelationUpdateNotify", _params, new javax.xml.namespace.QName("http://sp.ismp.chinatelecom.com", "orderRelationUpdateNotifyReturn"));
_oper.setReturnType(new javax.xml.namespace.QName("http://rsp.sp.ismp.chinatelecom.com", "Response"));
_oper.setElementQName(new javax.xml.namespace.QName("", "orderRelationUpdateNotify"));
_oper.setSoapAction("");
_myOperationsList.add(_oper);
if (_myOperations.get("orderRelationUpdateNotify") == null) {
_myOperations.put("orderRelationUpdateNotify", new java.util.ArrayList());
}
((java.util.List)_myOperations.get("orderRelationUpdateNotify")).add(_oper);
_params = new org.apache.axis.description.ParameterDesc [] {
new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://sp.ismp.chinatelecom.com", "serviceConsumeNotifyReqPara"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://req.sp.ismp.chinatelecom.com", "ServiceConsumeNotifyReq"), com.hbpubinfo.sp.ismp.schema.ServiceConsumeNotifyReq.class, false, false),
};
_oper = new org.apache.axis.description.OperationDesc("serviceConsumeNotify", _params, new javax.xml.namespace.QName("http://sp.ismp.chinatelecom.com", "serviceConsumeNotifyReturn"));
_oper.setReturnType(new javax.xml.namespace.QName("http://rsp.sp.ismp.chinatelecom.com", "Response"));
_oper.setElementQName(new javax.xml.namespace.QName("", "serviceConsumeNotify"));
_oper.setSoapAction("");
_myOperationsList.add(_oper);
if (_myOperations.get("serviceConsumeNotify") == null) {
_myOperations.put("serviceConsumeNotify", new java.util.ArrayList());
}
((java.util.List)_myOperations.get("serviceConsumeNotify")).add(_oper);
_params = new org.apache.axis.description.ParameterDesc [] {
new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://sp.ismp.chinatelecom.com", "notifyManagementInfoReq"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://req.sp.ismp.chinatelecom.com", "NotifyManagementInfoReq"), com.hbpubinfo.sp.ismp.schema.NotifyManagementInfoReq.class, false, false),
};
_oper = new org.apache.axis.description.OperationDesc("notifyManagementInfo", _params, new javax.xml.namespace.QName("http://sp.ismp.chinatelecom.com", "notifyManagementInfoReturn"));
_oper.setReturnType(new javax.xml.namespace.QName("http://rsp.sp.ismp.chinatelecom.com", "NotifyManagementInfoRsp"));
_oper.setElementQName(new javax.xml.namespace.QName("", "notifyManagementInfo"));
_oper.setSoapAction("");
_myOperationsList.add(_oper);
if (_myOperations.get("notifyManagementInfo") == null) {
_myOperations.put("notifyManagementInfo", new java.util.ArrayList());
}
((java.util.List)_myOperations.get("notifyManagementInfo")).add(_oper);
}
public IsmpSpEngineSoapBindingSkeleton() {
this.impl = new test.ismp.IsmpSpEngineSoapBindingImpl();
}
public IsmpSpEngineSoapBindingSkeleton(test.ismp.IsmpSpEngine impl) {
this.impl = impl;
}
public com.hbpubinfo.sp.ismp.schema.Response orderRelationUpdateNotify(com.hbpubinfo.sp.ismp.schema.OrderRelationUpdateNotifyReq orderRelationUpdateNotifyReq) throws java.rmi.RemoteException
{
com.hbpubinfo.sp.ismp.schema.Response ret = impl.orderRelationUpdateNotify(orderRelationUpdateNotifyReq);
return ret;
}
public com.hbpubinfo.sp.ismp.schema.Response serviceConsumeNotify(com.hbpubinfo.sp.ismp.schema.ServiceConsumeNotifyReq serviceConsumeNotifyReqPara) throws java.rmi.RemoteException
{
com.hbpubinfo.sp.ismp.schema.Response ret = impl.serviceConsumeNotify(serviceConsumeNotifyReqPara);
return ret;
}
public com.hbpubinfo.sp.ismp.schema.NotifyManagementInfoRsp notifyManagementInfo(com.hbpubinfo.sp.ismp.schema.NotifyManagementInfoReq notifyManagementInfoReq) throws java.rmi.RemoteException
{
com.hbpubinfo.sp.ismp.schema.NotifyManagementInfoRsp ret = impl.notifyManagementInfo(notifyManagementInfoReq);
return ret;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -