if (AppClientModuleConfig.J2EE_TYPE.equals(appType))
return true;
Set configs = AMXUtil.getQueryMgr().queryJ2EETypeNameSet(appType, appName);
ObjectType appConfig = (ObjectType) configs.iterator().next();
String objectType = appConfig.getObjectType();
return (ObjectTypeValues.USER.equalsIgnoreCase(objectType)) ? true: false;
}