}
for (Iterator i = userAttributeValueItems.iterator(); i.hasNext();) {
AttributeValueItem item = (AttributeValueItem) i.next();
PropertyDefinition def = item.getDefinition();
try {
def.validate(item.getValue().toString(), getClass().getClassLoader());
} catch (CoreException ce) {
ce.getBundleActionMessage().setArg3(item.getLabel());
errors.add(Globals.ERROR_KEY, ce.getBundleActionMessage());
} catch (CodedException ce) {
errors.add(Globals.ERROR_KEY, new ActionMessage("[Err:" + ce.getCode() + "] " + ce.getMessage()));