responsemessage.java

来自「Logica lastest SMPP API」· Java 代码 · 共 39 行

JAVA
39
字号
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 + =
减小字号Ctrl + -
显示快捷键?