Exemplo n.º 1
0
 public ByteBuffer getDestSubaddress() throws ValueNotSetException {
   return destSubaddress.getValue();
 }
Exemplo n.º 2
0
 public ByteBuffer getCallbackNumAtag() throws ValueNotSetException {
   return callbackNumAtag.getValue();
 }
Exemplo n.º 3
0
 public ByteBuffer getSourceSubaddress() throws ValueNotSetException {
   return sourceSubaddress.getValue();
 }
Exemplo n.º 4
0
 public ByteBuffer getMessagePayload() throws ValueNotSetException {
   return messagePayload.getValue();
 }
Exemplo n.º 5
0
 public ByteBuffer callbackNum() throws ValueNotSetException {
   return callbackNum.getValue();
 }
Exemplo n.º 6
0
 public void setSourceSubaddress(ByteBuffer value) {
   sourceSubaddress.setValue(value);
 }
Exemplo n.º 7
0
 public void setDestSubaddress(ByteBuffer value) {
   destSubaddress.setValue(value);
 }
Exemplo n.º 8
0
 public void setMessagePayload(ByteBuffer value) {
   messagePayload.setValue(value);
 }
Exemplo n.º 9
0
 public void setCallbackNumAtag(ByteBuffer value) {
   callbackNumAtag.setValue(value);
 }
Exemplo n.º 10
0
 public boolean hasDestSubaddress() {
   return destSubaddress.hasValue();
 }
Exemplo n.º 11
0
 public boolean hasSourceSubaddress() {
   return sourceSubaddress.hasValue();
 }
Exemplo n.º 12
0
 public boolean hasCallbackNumAtag() {
   return callbackNumAtag.hasValue();
 }
Exemplo n.º 13
0
 public boolean hasCallbackNum() {
   return callbackNum.hasValue();
 }
Exemplo n.º 14
0
 public boolean hasMessagePayload() {
   return messagePayload.hasValue();
 }