JML

net.sf.jqql.beans
Class SMSReply

java.lang.Object
  extended by net.sf.jqql.beans.SMSReply

public class SMSReply
extends Object

reply message of single SMS, for a receiver 单条短信的回复信息,针对一个接受者

Author:
luma
See Also:
SendSMSReplyPacket

Field Summary
 boolean isQQ
           
 String message
           
 String mobile
           
 int qq
           
 byte replyCode
           
 byte unknown
           
 
Constructor Summary
SMSReply()
           
 
Method Summary
 void readMobileBean(ByteBuffer buf)
          read reply message, type of receiver is mobile number 读取回复信息,接受者类型是手机号码
 void readQQBean(ByteBuffer buf)
          read reply message, receiver is a QQ number 读取回复信息,接受者是一个QQ号
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

isQQ

public boolean isQQ

message

public String message

qq

public int qq

mobile

public String mobile

replyCode

public byte replyCode

unknown

public byte unknown
Constructor Detail

SMSReply

public SMSReply()
Method Detail

readMobileBean

public void readMobileBean(ByteBuffer buf)
read reply message, type of receiver is mobile number 读取回复信息,接受者类型是手机号码

Parameters:
buf -

readQQBean

public void readQQBean(ByteBuffer buf)
read reply message, receiver is a QQ number 读取回复信息,接受者是一个QQ号

Parameters:
buf -

JML