42434445464748
/** * Create an inbox for the given user name (id) */ public UserInbox(RulesRepository repo, String userName) { this.userInfo = new UserInfo(repo, userName); }
49505152535455
/** * Create an inbox for the current sessions user id. */ public UserInbox(RulesRepository repo) { this.userInfo = new UserInfo(repo); }
43444546474849
50515253545556