{
Map<String, Action> actions = new Hashtable<String, Action>();
actions.put(ACTION_MARK_AS_READ, MarkAsRead.createForFeed(feed, true));
actions.put(ACTION_MARK_AS_UNREAD, MarkAsRead.createForFeed(feed, false));
actions.put(ACTION_DELETE, new DeleteFeed(feed, null));
if (feed instanceof DirectFeed)
{
actions.put(ACTION_BROWSE, new BrowseFeed(feed));
}