*/
@Override
public List<UserActionRequest> getUpdateCacheRequests(final Principal inUser, final Long inPersonId)
{
List<UserActionRequest> results = new ArrayList<UserActionRequest>(3);
results.add(new UserActionRequest(ASYNC_ACTION_NAME, null, inPersonId));
// the next async action needs the account id
List<Long> peopleIds = new ArrayList<Long>();
peopleIds.add(inPersonId);
List<PersonModelView> people = getPeopleByIdsMapper.execute(peopleIds);
results.add(new UserActionRequest(ASYNC_PERSONAL_STREAM_POSTS_ACTION_NAME, null, people.get(0).getAccountId()));
return results;
}