* Retrieve the list of {@link PersonModelView} objects based on OpenSocial id.
*/
@Override
public LinkedList<PersonModelView> execute(final PrincipalActionContext inActionContext) throws ExecutionException
{
GetPeopleByOpenSocialIdsRequest currentRequest = (GetPeopleByOpenSocialIdsRequest) inActionContext.getParams();
List<String> requestedOpenSocialIds = currentRequest.getOpenSocialIds();
List<String> openSocialIds = new ArrayList<String>();
List<String> accountIds = new ArrayList<String>();
List<PersonModelView> people = new ArrayList<PersonModelView>();
for(String currentUserId : requestedOpenSocialIds)