Example usage for org.springframework.batch.core.repository.dao JobExecutionDao interface-usage

List of usage examples for org.springframework.batch.core.repository.dao JobExecutionDao interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.repository.dao JobExecutionDao interface-usage.

Usage

From source file admin.service.SearchableJobExecutionDao.java

/**
 * @author Dave Syer
 * 
 */
public interface SearchableJobExecutionDao extends JobExecutionDao {

From source file org.trpr.platform.batch.impl.spring.admin.repository.MapJobExecutionDao.java

/**
 * Trooper implementation of {@link org.springframework.batch.core.repository.dao.MapJobExecutionDao}
 * Faster implementation that doesn't rely on serialisation for deep copy. Added an ability to remove 
 * JobExecutions
 * 
 * @author devashishshankar

From source file org.springframework.batch.core.repository.dao.JdbcJobExecutionDao.java

/**
 * JDBC implementation of {@link JobExecutionDao}. Uses sequences (via Spring's
 * {@link DataFieldMaxValueIncrementer} abstraction) to create all primary keys
 * before inserting a new row. Objects are checked to ensure all mandatory
 * fields to be stored are not null. If any are found to be null, an
 * IllegalArgumentException will be thrown. This could be left to JdbcTemplate,