]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/generator/RunnableFactory.java
Improve executions and system calls
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / generator / RunnableFactory.java
1 package org.argeo.slc.core.execution.generator;
2
3 import org.springframework.beans.factory.support.BeanDefinitionRegistry;
4
5 /**
6 * Interprets a <code>RunnableDataNode</code> by creating corresponding
7 * beans and registering them in a <code>BeanDefinitionRegistry</code>
8 *
9 */
10 public interface RunnableFactory {
11
12 public void createAndRegisterRunnable(RunnableDataNode node,
13 BeanDefinitionRegistry beanDefinitionRegistry);
14 }