All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ie.omk.smpp.message.BindTransmitter Maven / Gradle / Ivy

The newest version!
package ie.omk.smpp.message;

/**
 * Bind to the SMSC as a transmitter.
 * 
 * @author Oran Kelly
 * @version 1.0
 */
public class BindTransmitter extends ie.omk.smpp.message.Bind {
    /**
     * Construct a new BindTransmitter.
     */
    public BindTransmitter() {
        super(BIND_TRANSMITTER);
    }

    /**
     * Convert this packet to a String. Not to be interpreted programmatically,
     * it's just dead handy for debugging!
     */
    public String toString() {
        return new String("bind_transmitter");
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy