ie.omk.smpp.message.SmeAddress 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;
/**
* The address of an SME.
*
* @deprecated Use {@link ie.omk.smpp.Address}.
*/
public class SmeAddress extends ie.omk.smpp.Address {
static final long serialVersionUID = -7812497043813226780L;
public SmeAddress() {
}
public SmeAddress(int ton, int npi, String addr) {
super(ton, npi, addr);
}
}