Result result = super.validate(cce); // Before doing custom
// validation do basic
// validation
try{
if(cce.getChoice().equals(StaticTest.UPDATE) || cce.getChoice().equals(StaticTest.DELETE)) {
if(!getObjectType(cce).equals("user"))
result.failed(smh.getLocalString(getClass().getName()+".systemAppNotChangeable",
"System Application, Attribute Not Changeable"));
}
}
catch (final ConfigException ce){
_logger.log(Level.WARNING, "domainxmlverifier.exception", ce);
}
return result;