bindreceiver.java

来自「SMPP(点到点短消息协议)的java实现」· Java 代码 · 共 27 行

JAVA
27
字号
package ie.omk.smpp.message;/** * Bind to the SMSC as receiver. This message is used to bind to the SMSC as a * Receiver ESME. *  * @author Oran Kelly * @version 1.0 */public class BindReceiver extends ie.omk.smpp.message.Bind {    /**     * Constructs a new BindReceiver.     */    public BindReceiver() {        super(BIND_RECEIVER);    }    /**     * Convert this packet to a String. Not to be interpreted programmatically,     * it's just dead handy for debugging!     */    public String toString() {        return "bind_receiver";    }}

⌨️ 快捷键说明

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