private void notifyAllWorkflowState(
     ExecutionState executionState, Date timestamp, List<String> nodenames) {
   for (WorkflowStateListener listener : listeners) {
     listener.workflowExecutionStateChanged(executionState, timestamp, nodenames);
   }
 }