
com.mozu.jobs.dao.JobExecutionDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-jobs Show documentation
Show all versions of mozu-api-jobs Show documentation
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