📄 ismpspengineserviceskeleton.java
字号:
/**
* IsmpSpEngineServiceSkeleton.java
*
* This file was auto-generated from WSDL
* by the Apache Axis2 version: 1.3 Built on : Aug 10, 2007 (04:45:47 LKT)
*/
package com.chinatelecom.ismp.sp;
import com.chinatelecom.ismp.sp.req.NotifyManagementInfoReq;
import com.chinatelecom.ismp.sp.req.OrderRelationUpdateNotifyReq;
import com.chinatelecom.ismp.sp.req.ServiceConsumeNotifyReq;
import com.chinatelecom.ismp.sp.rsp.NotifyManagementInfoRsp;
import com.chinatelecom.ismp.sp.rsp.Response;
/**
* IsmpSpEngineServiceSkeleton java skeleton for the axisService
*/
public class IsmpSpEngineServiceSkeleton {
/**
* Auto generated method signature
* @param orderRelationUpdateNotifyReq
*/
public com.chinatelecom.ismp.sp.OrderRelationUpdateNotifyReturn orderRelationUpdateNotify(
com.chinatelecom.ismp.sp.OrderRelationUpdateNotifyReq1 orderRelationUpdateNotifyReq) {
//TODO : fill this with the necessary business logic
OrderRelationUpdateNotifyReq order=orderRelationUpdateNotifyReq.getOrderRelationUpdateNotifyReq();
// 打印消息
System.out.println("Get OrderRelationUpdateNotifyReq order :");
System.out.println(" StreamingNo = " + order.getStreamingNo());
System.out.println(" OPType = " + order.getOPType());
System.out.println(" PackageID = " + order.getPackageID());
System.out.println(" ProductID = " + order.getProductID());
System.out.println(" UserID = " + order.getUserID());
System.out.println(" UserIDType = " + order.getUserIDType());
OrderRelationUpdateNotifyReturn ret= new OrderRelationUpdateNotifyReturn();
Response reponse= new Response();
reponse.setStreamingNo(order.getStreamingNo());
reponse.setResultCode(0);
ret.setOrderRelationUpdateNotifyReturn(reponse);
return ret;
//
// throw new java.lang.UnsupportedOperationException("Please implement " +
// this.getClass().getName() + "#orderRelationUpdateNotify");
}
/**
* Auto generated method signature
* @param serviceConsumeNotifyReqPara
*/
public com.chinatelecom.ismp.sp.ServiceConsumeNotifyReturn serviceConsumeNotify(
com.chinatelecom.ismp.sp.ServiceConsumeNotifyReqPara serviceConsumeNotifyReqPara) {
//TODO : fill this with the necessary business logic
ServiceConsumeNotifyReq req=serviceConsumeNotifyReqPara.getServiceConsumeNotifyReqPara();
// 打印消息
System.out.println("Get ServiceConsumeNotifyReq req :");
System.out.println(" FeatureStr = " + req.getFeatureStr());
System.out.println(" LinkID = " + req.getLinkID());
System.out.println(" ProductID = " + req.getProductID());
System.out.println(" UserID = " + req.getUserID());
System.out.println(" UserIDType = " + req.getUserIDType());
System.out.println(" StreamingNo = " + req.getStreamingNo());
ServiceConsumeNotifyReturn ret= new ServiceConsumeNotifyReturn();
Response reponse= new Response();
reponse.setStreamingNo(req.getStreamingNo());
reponse.setResultCode(0);
ret.setServiceConsumeNotifyReturn(reponse);
return ret;
// throw new java.lang.UnsupportedOperationException("Please implement " +
// this.getClass().getName() + "#serviceConsumeNotify");
}
/**
* Auto generated method signature
* @param notifyManagementInfoReq
*/
public com.chinatelecom.ismp.sp.NotifyManagementInfoReturn notifyManagementInfo(
com.chinatelecom.ismp.sp.NotifyManagementInfoReq0 notifyManagementInfoReq) {
//TODO : fill this with the necessary business logic
NotifyManagementInfoReq req=notifyManagementInfoReq.getNotifyManagementInfoReq();
System.out.println("Get NotifyManagementInfoReq req :");
System.out.println(" ID = " + req.getID());
System.out.println(" IDType = " + req.getIDType());
System.out.println(" Status = " + req.getStatus());
System.out.println(" StreamingNo = " + req.getStreamingNo());
NotifyManagementInfoReturn ret= new NotifyManagementInfoReturn();
NotifyManagementInfoRsp reponse= new NotifyManagementInfoRsp();
reponse.setStreamingNo(req.getStreamingNo());
reponse.setResultCode(0);
ret.setNotifyManagementInfoReturn(reponse);
return ret;
// throw new java.lang.UnsupportedOperationException("Please implement " +
// this.getClass().getName() + "#notifyManagementInfo");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -