Add missing interface (maybe Lucas has a version with Javadocs?)

This commit is contained in:
dsyer
2007-08-21 13:14:48 +00:00
parent 5cf6ecf536
commit 9482829412

View File

@@ -0,0 +1,16 @@
package org.springframework.batch.execution.bootstrap;
import org.springframework.batch.core.configuration.NoSuchJobConfigurationException;
import org.springframework.batch.repeat.ExitStatus;
public interface SynchronousJobLauncher {
boolean isRunning();
ExitStatus run();
ExitStatus run(String jobName) throws NoSuchJobConfigurationException;
void stop();
}