/* TODO: make private */ Tuple<String, DistributedUserLayout> getUserLayoutTuple(String userName, int userId) {
final PersonImpl person = new PersonImpl();
person.setUserName(userName);
person.setID(userId);
person.setSecurityContext(new BrokenSecurityContext());
final IUserProfile profile = layoutStore.getUserProfileByFname(person, UserProfile.DEFAULT_PROFILE_FNAME);
final DistributedUserLayout userLayout = layoutStore.getUserLayout(person, (UserProfile) profile);
return new Tuple<String, DistributedUserLayout>(userName, userLayout);