![JAR search and dependency download from the Maven repository](/logo.png)
ie.omk.smpp.message.BindReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smppapi Show documentation
Show all versions of smppapi Show documentation
Java Implementation of the Short Message Peer to Peer API.
The newest version!
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";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy