public CreateNewPuzzleResult execute(CreateNewPuzzleAction action, ExecutionContext context)
throws ActionException {
HeyawakePuzzle puzzle = heyawakeDAO.createNewHeyawake(action.getWidth(), action.getHeight());
return new CreateNewPuzzleResult(puzzle);
}