⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 responsemessage.java

📁 Logica lastest SMPP API
💻 JAVA
字号:
package com.smpp.server;

import com.logica.smpp.pdu.SubmitSMResp;

public class ResponseMessage
{
	private String messageId;
	private int commandId;
	private int commandLength;
	private int commandStatus;
	
	/**
	 * @param args
	 */
	public static void main(String[] args)
	{
		// TODO Auto-generated method stub

	}
	
		
	public ResponseMessage(SubmitSMResp resp)
	{
		//System.out.println("Input Object is :"+resp);
		messageId = resp.getMessageId();
		commandId = resp.getCommandId();
		commandLength = resp.getCommandLength();
		commandStatus= resp.getCommandStatus();
		//System.out.println("MT Response :"+resp.debugString());
		
		
		
		 
	}
	
	

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -