/// @throws AccessDenied If security policy denies this operation
public static final Object[] p_getCitizen = { null, "name", "*credentials", null };
public Any m_getCitizen(Context context, String name, String credentials)
{
context.checkAccess(AnyCitizen.CAN_READ);
Zone zone = _context.getZone();
AccessPreferences access = zone.getAccessPreferences();
if (access != null) {
String realmName = access.getRealm();
context.checkRealm(realmName);
Realm realm = zone.getRealm(realmName);
if (realm != null) {
Citizen citizen = realm.getCitizen(name);
if (citizen != null) {
if (credentials != null) {
if (citizen.verifyCredentials(credentials)) {