package org.argeo.slc.core.execution.generator; import org.springframework.beans.factory.support.BeanDefinitionRegistry; /** * Interprets a RunnableDataNode by creating corresponding * beans and registering them in a BeanDefinitionRegistry * */ public interface RunnableFactory { public void createAndRegisterRunnable(RunnableDataNode node, BeanDefinitionRegistry beanDefinitionRegistry); }