Documentation additions around batch events and formatting fixes

This commit is contained in:
Michael Minella
2016-04-26 11:03:33 -05:00
parent bf52aee188
commit 619bc567a1
6 changed files with 92 additions and 20 deletions

View File

@@ -29,13 +29,24 @@ import org.springframework.transaction.PlatformTransactionManager;
public interface TaskConfigurer {
/**
* Create a Task Repository for the Task.
* Create a {@link TaskRepository} for the Task.
*
* @return A TaskRepository
*/
TaskRepository getTaskRepository();
/**
* Create a {@link PlatformTransactionManager} for use with the
* <code>TaskRepository</code>.
*
* @return A <code>PlatformTransactionManager</code>
*/
PlatformTransactionManager getTransactionManager();
/**
* Create a {@link TaskExplorer} for the task.
*
* @return a <code>TaskExplorer</code>
*/
TaskExplorer getTaskExplorer();
}