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