public static class RecordNode implements ActionHandler {
private static final long serialVersionUID = 1L;
public void execute(ExecutionContext executionContext) throws Exception {
Node node = executionContext.getNode();
nodes.add(node.getName());
node.leave(executionContext);
}
}
CommandExecutorThread commandExecutor = null;