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

com.github.ltsopensource.queue.domain.JobFeedbackPo Maven / Gradle / Ivy

package com.github.ltsopensource.queue.domain;


import com.github.ltsopensource.core.domain.JobRunResult;

/**
 * @author Robert HG ([email protected]) on 3/3/15.
 */
public class JobFeedbackPo{

    private String id;

    private Long gmtCreated;

    private JobRunResult jobRunResult;

    public JobRunResult getJobRunResult() {
        return jobRunResult;
    }

    public void setJobRunResult(JobRunResult jobRunResult) {
        this.jobRunResult = jobRunResult;
    }

    public Long getGmtCreated() {
        return gmtCreated;
    }

    public void setGmtCreated(Long gmtCreated) {
        this.gmtCreated = gmtCreated;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy