Example #1
0
 /**
  * Get the "to state" for transition-related messages
  *
  * @return state, or null for other message types
  */
 public String getToState() {
   return _record.getSimpleField(Attributes.TO_STATE.toString());
 }
Example #2
0
 /**
  * Set the "to state" for transition-related messages
  *
  * @param state the state
  */
 public void setToState(String state) {
   _record.setSimpleField(Attributes.TO_STATE.toString(), state.toString());
 }