001package com.thed.model;
002
003import java.util.Date;
004import java.util.List;
005
006public class AutomationJobReport {
007
008        private List<Long> testcasesCreated;
009        private List<Long> testcasesPassed;
010        private List<Long> testcasesFailed;
011        private Date jobStart;
012        private Date jobEndDate;
013        private AutomationJobDetail automationJob;
014        private String jobStatus;
015
016        public AutomationJobDetail getAutomationJob() {
017                return automationJob;
018        }
019
020        public void setAutomationJob(AutomationJobDetail automationJob) {
021                this.automationJob = automationJob;
022        }
023
024        public String getJobStatus() {
025                return jobStatus;
026        }
027
028        public void setJobStatus(String jobStatus) {
029                this.jobStatus = jobStatus;
030        }
031
032        public List<Long> getTestcasesCreated() {
033                return testcasesCreated;
034        }
035
036        public void setTestcasesCreated(List<Long> testcasesCreated) {
037                this.testcasesCreated = testcasesCreated;
038        }
039
040        public List<Long> getTestcasesPassed() {
041                return testcasesPassed;
042        }
043
044        public void setTestcasesPassed(List<Long> testcasesPassed) {
045                this.testcasesPassed = testcasesPassed;
046        }
047
048        public List<Long> getTestcasesFailed() {
049                return testcasesFailed;
050        }
051
052        public void setTestcasesFailed(List<Long> testcasesFailed) {
053                this.testcasesFailed = testcasesFailed;
054        }
055
056        public Date getJobStart() {
057                return jobStart;
058        }
059
060        public void setJobStart(Date jobStart) {
061                this.jobStart = jobStart;
062        }
063
064        public Date getJobEndDate() {
065                return jobEndDate;
066        }
067
068        public void setJobEndDate(Date jobEndDate) {
069                this.jobEndDate = jobEndDate;
070        }
071
072}