sfremote.setDataSource(dataSource);
// get the list of individuals from the ejb layer
Collection individualList = sfremote.getIndividualList(individualIDsession);
ModuleFieldRightMatrix rightsMatrix = userObject.getUserPref().getModuleAuthorizationMatrix();
HashMap indivFieldRights = rightsMatrix.getFieldRights("Individual");
HashMap entityFieldRights = rightsMatrix.getFieldRights("Entity");
// individualList shouldn't be null. If it is, there's a problem.
// SyncFacadeEJB should always return a valid collection (an
// empty Collection is still a valid Collection, but null is not).
if (individualList != null)