// see if the module can find an attribute value
EvaluationResult result = module.findAttribute(attributeType, attributeId, issuer,
subjectCategory, context, designatorType);
// if there was an error, we stop right away
if (result.indeterminate()) {
if (logger.isLoggable(Level.INFO))
logger.info("Error while trying to resolve values: "
+ result.getStatus().getMessage());
return result;
}