All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mozu.jobs.dao.JobExecutionDao Maven / Gradle / Ivy

Go to download

Mozu Java Jobs contains helper classes for running Spring Batch and Quartz scheduling

The newest version!
/*
 * COPYRIGHT (C) 2014 Volusion Inc. All Rights Reserved.
 */
package com.mozu.jobs.dao;

import java.sql.Timestamp;
import java.util.List;

public interface JobExecutionDao {
    List getRecentJobExecutionIds(Long tenantId, ListjobNames);
    
    List getRecentJobExecutionIds (Long tenantId,String jobName);

    Timestamp getLastExecutionDate(Long tenantId, String jobName);

    Timestamp getLastExecutionDate(Long tenantId, Long siteId, String jobName);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy