use of org.finos.waltz.service.change_unit.AttributeChangeCommandProcessor in project waltz by khartec.
the class ModifyCommandProcessor method getCommandProcessor.
private AttributeChangeCommandProcessor getCommandProcessor(String attributeName) {
AttributeChangeCommandProcessor commandProcessor = processorsByAttribute.get(attributeName);
checkNotNull(commandProcessor, "Cannot find processor for attribute: " + attributeName);
return commandProcessor;
}
Aggregations