try {
PebbleUserDetails user = realm.getUser(username);
if (user != null) {
getModel().put(Constants.USER_KEY, user);
getModel().put(Constants.BLOG_ENTRIES, blog.getRecentPublishedBlogEntries(username));
return new AboutAuthorView();
}
} catch (SecurityRealmException e) {
log.error("Exception encountered", e);
}