Search in sources :

Example 1 with AttributeChangeCommandProcessor

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;
}
Also used : AttributeChangeCommandProcessor(org.finos.waltz.service.change_unit.AttributeChangeCommandProcessor)

Aggregations

AttributeChangeCommandProcessor (org.finos.waltz.service.change_unit.AttributeChangeCommandProcessor)1