コード例 #1
0
 BindTransmitterResp(ByteBuffer bb) throws PduException {
   super(bb);
   try {
     systemId = bb.removeCString();
   } catch (TerminatingNullNotFoundException e) {
     throw new PduException("System id parsing failed.", e);
   }
 }
コード例 #2
0
 @Override
 protected ByteBuffer body() {
   ByteBuffer bb = new ByteBuffer();
   bb.appendCString(systemId);
   return bb;
 }