?? genericnack.java
字號:
package ie.omk.smpp.message;/** * Generic negative acknowledgment. Used if the short message entity, either * ESME or SMSC, does not understand a message transmitted to it or if a * transmitted protocol message is badly formed. * * @author Oran Kelly * @version 1.0 */public class GenericNack extends ie.omk.smpp.message.SMPPResponse { /** * Construct a new GenericNack. */ public GenericNack() { super(GENERIC_NACK); } /** * Construct a new GenericNack with specified sequence number. * * @param seqNum * The sequence number to use * @deprecated */ public GenericNack(int seqNum) { super(GENERIC_NACK, seqNum); } public int getBodyLength() { return 0; } public void readBodyFrom(byte[] b, int offset) throws SMPPProtocolException { return; } /** * Convert this packet to a String. Not to be interpreted programmatically, * it's just dead handy for debugging! */ public String toString() { return new String("generic_nack"); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -