return this.shortMessage;
}
public void setShortMessage(byte[] value) throws SmppInvalidArgumentException {
if (value != null && value.length > 255) {
throw new SmppInvalidArgumentException("A short message in a PDU can only be a max of 255 bytes [actual=" + value.length + "]; use optional parameter message_payload as an alternative");
}
this.shortMessage = value;
}