{
Map<String, Action> actions = new Hashtable<String, Action>();
actions.put(ACTION_MARK_AS_READ, MarkAsRead.createForGuide(guide, true));
actions.put(ACTION_MARK_AS_UNREAD, MarkAsRead.createForGuide(guide, false));
actions.put(ACTION_DELETE, new DeleteGuide(guide));
return actions;
}