Beispiel #1
0
 public void setShortMessage(String value) throws WrongLengthOfStringException {
   shortMessage.setMessage(value);
   setSmLength((short) shortMessage.getLength());
 }
Beispiel #2
0
 public void setShortMessage(String value, String encoding)
     throws WrongLengthOfStringException, UnsupportedEncodingException {
   shortMessage.setMessage(value, encoding);
   setSmLength((short) shortMessage.getLength());
 }
Beispiel #3
0
 public void setShortMessageData(ByteBuffer value)
     throws PDUException, NotEnoughDataInByteBufferException, TerminatingZeroNotFoundException {
   shortMessage.setData(value);
   setSmLength((short) shortMessage.getLength());
 }