Beispiel #1
0
 /**
  * Set the session identifier of the source node
  *
  * @param srcSessionId session identifier
  */
 public void setSrcSessionId(SessionId srcSessionId) {
   if (srcSessionId != null) {
     setSrcSessionId(srcSessionId.stringify());
   }
 }
Beispiel #2
0
 /**
  * Set the session identifier of the node that executes the message
  *
  * @param exeSessionId session identifier
  */
 public void setExecuteSessionId(SessionId exeSessionId) {
   if (exeSessionId != null) {
     setExecuteSessionId(exeSessionId.stringify());
   }
 }
Beispiel #3
0
 /**
  * Set the session identifier of the destination node
  *
  * @param tgtSessionId session identifier
  */
 public void setTgtSessionId(SessionId tgtSessionId) {
   if (tgtSessionId != null) {
     setTgtSessionId(tgtSessionId.stringify());
   }
 }