// lets convert any references
Set<Map.Entry<String, Object>> attributeEntries = attributeArguments.entrySet();
for (Map.Entry<String, Object> entry : attributeEntries) {
String name = entry.getKey();
FluentArg arg = match.parameterAnnotations.get(name);
if (arg != null && (arg.reference() || name.equals("ref"))) {
Object value = entry.getValue();
if (value instanceof String) {
entry.setValue(new RuntimeBeanReference(value.toString()));
}
}