action1.setEntity(firstComment);
EntitiesAction action2 = new RemoveAction(transaction);
action2.setEntities(comments);
action2.setEntity(secondComment);
transaction.execute();
allActionsUndone = transaction.undo();
log.info("Undone Transaction: " + allActionsUndone);
} catch (ActionException ae) {
log.info("Transaction problem: " + ae.getMessage());
}
}