* @param context the current request context
* @return true is the functionality is enabled
*/
protected boolean checkHasManageUsers(RequestContext context) {
boolean umHasDeleteUserLink = false;
UsernamePasswordCredentials upc = context.getIdentityConfiguration().getSimpleConfiguration().getServiceAccountCredentials();
if(upc !=null) return umHasDeleteUserLink;
StringAttributeMap umParameters = context.getCatalogConfiguration().getParameters();
if(umParameters.containsKey("ldap.identity.manage.userRoleEnabled")){
String umHasDeleteUserLinkEnabled = com.esri.gpt.framework.util.Val.chkStr(umParameters.getValue("ldap.identity.manage.userRoleEnabled"));