org.n3r.quartz.glass.log.joblog.JobLogStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quartz-glass Show documentation
Show all versions of quartz-glass Show documentation
A web user interface for quartz
package org.n3r.quartz.glass.log.joblog;
import org.n3r.quartz.glass.util.Page;
import org.n3r.quartz.glass.util.Query;
public interface JobLogStore {
public void add(JobLog jobLog);
public Page getLogs(Long executionId, Query query);
public Page getLogs(Query query);
public void clear();
}