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

org.openfact.models.JobReportQuery Maven / Gradle / Ivy

package org.openfact.models;

import java.util.Date;
import java.util.List;

public interface JobReportQuery {

    JobReportQuery jobName(String... jobName);

    JobReportQuery fromDate(Date fromDate);

    JobReportQuery toDate(Date toDate);

    JobReportQuery firstResult(int result);

    JobReportQuery maxResults(int results);

    List getResultList();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy