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

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

package org.openfact.models;

public interface JobReportModel {

    String getId();

    String getJobName();

    void setJobName(String jobName);

    long getStartTime();

    void setStartTime(long startTime);

    long getEndTime();

    void setEndTime(long endTime);

    long getDuration();

    void setDuration(long value);

    long getErrorCount();

    void setErrorCount(long value);

    long getReadCount();

    void setReadCount(long value);

    long getWriteCount();

    void setWriteCount(long value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy