A class that is responsible for converting a single {@link StepDefinition} toall required artifacts needed.
Please note that {@link StepDefinitionConverter} instances are reused andshould be state-less.
135136137138139140141142143144145
* @return Converter that can be used on the given definition. * @throws IllegalArgumentException * when there is no converter known for the given definition. */ public StepDefinitionConverter getStepConverterFor(StepDefinition definition) { StepDefinitionConverter converter = null; if (stepConverters != null) { converter = stepConverters.get(definition.getClass()); }