public UUID addObjectConfiguration(final Class<? extends ConfiguredObject> parentCategory, final String parentName,
Class<? extends ConfiguredObject> type, Map<String, Object> attributes)
{
UUID id = UUIDGenerator.generateRandomUUID();
ConfiguredObjectRecord entry =
new ConfiguredObjectRecordImpl(id, type.getSimpleName(), attributes,
Collections.singletonMap(parentCategory.getSimpleName(), findObject(parentCategory,parentName).getId()));
_store.update(true, entry);
return id;
}