}
protected org.apache.lenya.inbox.Inbox getInbox() {
org.apache.lenya.inbox.Inbox inbox = (org.apache.lenya.inbox.Inbox) getParameter(PARAM_INBOX);
if (inbox == null) {
InboxManager inboxManager = null;
try {
inboxManager = (InboxManager) this.manager.lookup(InboxManager.ROLE);
inbox = inboxManager.getInbox(getUser());
setParameter(PARAM_INBOX, inbox);
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
if (inboxManager != null) {