use of org.smpp.util.ByteBuffer in project opensmpp by OpenSmpp.
the class ShortMessage method getData.
/**
* Returns the sequence of octets generated from the message according the encoding
* provided.
* @return the bytes generated from the message
*/
public ByteBuffer getData() {
ByteBuffer buffer = null;
buffer = new ByteBuffer(messageData);
return buffer;
}
Aggregations