Example usage for org.springframework.batch.core.step.tasklet Tasklet interface-usage

List of usage examples for org.springframework.batch.core.step.tasklet Tasklet interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.step.tasklet Tasklet interface-usage.

Usage

From source file fr.acxio.tools.agia.tasks.ZipFilesTasklet.java

public class ZipFilesTasklet implements Tasklet, InitializingBean {

    private static final Logger LOGGER = LoggerFactory.getLogger(ZipFilesTasklet.class);

    protected Resource sourceBaseDirectory;
    protected ResourcesFactory sourceFactory;

From source file uk.ac.ebi.intact.task.mitab.index.OntologyPopulatorTasklet.java

/**
 * @author Bruno Aranda (baranda@ebi.ac.uk)
 * @version $Id$
 */
public class OntologyPopulatorTasklet implements Tasklet {

From source file org.ohdsi.webapi.ircalc.PerformAnalysisTasklet.java

/**
 *
 * @author Chris Knoll <cknoll@ohdsi.org>
 */
public class PerformAnalysisTasklet implements Tasklet {

From source file com.gopivotal.spring.xd.module.jdbc.JdbcTasklet.java

/**
 * @author Dave Syer,
 * @author Christian Tzolov
 * 
 */
public class JdbcTasklet implements Tasklet, InitializingBean {

From source file com.github.jrrdev.mantisbtsync.core.jobs.issues.tasklets.IssuesLastRunExtractorTasklet.java

/**
 * Tasklet getting the last successful start time of the job with the same
 * job parameters.
 * That start time is used by {@link OpenIssuesReader} to perform filtering.
 *
 * @author jrrdev

From source file com.github.jrrdev.mantisbtsync.core.jobs.projects.tasklets.ProjectsListTasklet.java

/**
 * Tasklet to that retrieved all subprojects related to the main
 * project passed as job parameter.
 * Each subproject is inserted into mantis_project_table with a link to the
 * main project in mantis_project_hierarchy_table.
 * In addition, each subproject is added is added to the list of projects to sync

From source file org.ohdsi.webapi.feasibility.PerformFeasibilityTasklet.java

 * @author Chris Knoll <cknoll@ohdsi.org>
 */
public class PerformFeasibilityTasklet implements Tasklet {

    private static final Log log = LogFactory.getLog(PerformFeasibilityTasklet.class);

From source file org.cbio.portal.pipelines.foundation.FoundationFileTasklet.java

/**
 *
 * @author ochoaa
 */
public class FoundationFileTasklet implements Tasklet {

From source file org.cbio.portal.pipelines.foundation.MetaDataTasklet.java

/**
 * Tasklet for loading meta data and writing meta staging files. 
 * @author ochoaa
 */
public class MetaDataTasklet implements Tasklet {

From source file org.jasig.ssp.util.importer.job.tasklet.BatchInitializer.java

public class BatchInitializer implements Tasklet {

    // default encoding for input files
    public static final String DEFAULT_CHARSET = Charset.defaultCharset().name();
    private String encoding = DEFAULT_CHARSET;