001package com.thed.model;
002
003import java.util.Date;
004import java.util.List;
005
006/**
007 * Created by abhishek.kumar on 1/22/2020.
008 */
009public class RemoteTestResult {
010
011    public Integer actualTime;
012    public Date executionDate;
013    public String executionNotes;
014    public String executionStatus;
015    public Long id;
016    public String releaseTestScheduleId;
017    public List<RemoteFieldValue> testStepExecutions;
018    public Long testerId;
019
020    public Integer getActualTime() {
021        return actualTime;
022    }
023
024    public void setActualTime(Integer actualTime) {
025        this.actualTime = actualTime;
026    }
027
028    public Date getExecutionDate() {
029        return executionDate;
030    }
031
032    public void setExecutionDate(Date executionDate) {
033        this.executionDate = executionDate;
034    }
035
036    public String getExecutionNotes() {
037        return executionNotes;
038    }
039
040    public void setExecutionNotes(String executionNotes) {
041        this.executionNotes = executionNotes;
042    }
043
044    public String getExecutionStatus() {
045        return executionStatus;
046    }
047
048    public void setExecutionStatus(String executionStatus) {
049        this.executionStatus = executionStatus;
050    }
051
052    public Long getId() {
053        return id;
054    }
055
056    public void setId(Long id) {
057        this.id = id;
058    }
059
060    public String getReleaseTestScheduleId() {
061        return releaseTestScheduleId;
062    }
063
064    public void setReleaseTestScheduleId(String releaseTestScheduleId) {
065        this.releaseTestScheduleId = releaseTestScheduleId;
066    }
067
068    public List<RemoteFieldValue> getTestStepExecutions() {
069        return testStepExecutions;
070    }
071
072    public void setTestStepExecutions(List<RemoteFieldValue> testStepExecutions) {
073        this.testStepExecutions = testStepExecutions;
074    }
075
076    public Long getTesterId() {
077        return testerId;
078    }
079
080    public void setTesterId(Long testerId) {
081        this.testerId = testerId;
082    }
083}