* must be on the same centre as before<br/>
* OR have ADMINMYSELF_CENTREID AND be in the same country<br/>
* OR must have ADMINMYSELF_COUNTRYID
*/
CentreBean oldCentre = (CentreBean) CentreFinderBase
.findByPrimaryKey(con, new CentreKey(user.getCentreid()));
CentreBean newCentre = (CentreBean) CentreFinderBase
.findByPrimaryKey(con, new CentreKey(myself.getCentreid()));
if (oldCentre.getId().equals(newCentre.getId())
|| (disp.checkAccess(user.getId(), "ADMINMYSELF_CENTREID") && oldCentre
.getCountryid().equals(newCentre.getCountryid()))
|| disp.checkAccess(user.getId(), "ADMINMYSELF_COUNTRYID")) {