001package com.thed.model;
002// Generated Jun 29, 2007 8:10:35 PM by Hibernate Tools 3.2.0.b9
003
004
005import java.util.Date;
006import java.util.Set;
007
008import com.thed.zblast.parser.model.TCRCatalogTreeTestcase;
009
010public class ReleaseTestSchedule  implements java.io.Serializable {
011
012        private static final long serialVersionUID = -124050371206671670L;
013    private long id;
014        private Long estimatedTime;
015        private String comment;
016        private Long testerId;
017        private String versionId;
018        private Long cyclePhaseId;
019        private Set<Defect> defects;
020        private TestResult lastTestResult ;
021        private Integer attachmentCount;
022        private Long actualTime;
023        private Long testScheduleId;
024        private TCRCatalogTreeTestcase tcrTreeTestcase;
025        private Long lastModifiedBy;
026        private Date lastModifiedOn;
027    private Date startDate;
028    private Date assignmentDate;
029    private String status;
030    private Long executedBy;
031    private Long changeBy;
032
033  public Integer getAttachmentCount() {
034                return attachmentCount;
035        }
036
037        public Long getChangeBy() {
038                return changeBy;
039        }
040
041        public void setChangeBy(Long changeBy) {
042                this.changeBy = changeBy;
043        }
044
045        public void setAttachmentCount(Integer attachmentCount) {
046                this.attachmentCount = attachmentCount;
047        }
048
049        public ReleaseTestSchedule() {
050    }
051
052        public ReleaseTestSchedule(Long testerId, TCRCatalogTreeTestcase tCRCatalogTreeTestcase,
053                        Long cyclePhaseId, Date startDate, Date assignmentDate,
054                        Long estimatedTime, String status, Long actualTime) {
055       this.testerId = testerId;
056                this.tcrTreeTestcase = tCRCatalogTreeTestcase;
057       this.cyclePhaseId = cyclePhaseId;
058       this.assignmentDate = assignmentDate;
059       this.estimatedTime = estimatedTime;
060       this.actualTime = actualTime;
061    }
062
063    public Long getCyclePhaseId() {
064        return this.cyclePhaseId;
065    }
066
067    public void setCyclePhaseId(Long cyclePhaseId) {
068        this.cyclePhaseId = cyclePhaseId;
069    }
070    public Date getAssignmentDate() {
071        return this.assignmentDate;
072    }
073
074    public void setAssignmentDate(Date assignmentDate) {
075        this.assignmentDate = assignmentDate;
076    }
077    public Long getEstimatedTime() {
078        return this.estimatedTime;
079    }
080
081    public void setEstimatedTime(Long estimatedTime) {
082        this.estimatedTime = estimatedTime;
083    }
084
085        /**
086         * @return the comment
087         */
088        public String getComment() {
089                return comment;
090        }
091
092        /**
093         * @param comment the comment to set
094         */
095        public void setComment(String comment) {
096                this.comment = comment;
097        }
098        /**
099         * @param testResults
100         *            the testResults to set
101         */
102
103        public TCRCatalogTreeTestcase getTcrTreeTestcase() {
104                return tcrTreeTestcase;
105        }
106
107        public void setTcrTreeTestcase(TCRCatalogTreeTestcase tCRCatalogTreeTestcase) {
108                this.tcrTreeTestcase = tCRCatalogTreeTestcase;
109}
110
111        public Long getTesterId() {
112            return testerId;
113        }
114
115        public void setTesterId(Long testerId) {
116            this.testerId = testerId;
117        }
118
119        /**
120         * <b>Description</b>: getter method for attribute <i>lastTestResult</i>
121         * 
122         * @return lastTestResult
123         */
124        public TestResult getLastTestResult() {
125                return this.lastTestResult;
126        }
127
128        /**
129         * <b>Description</b>: setter method for attribute <i>lastTestResult</i>
130         * 
131         * @param lastTestResult
132         */
133        public void setLastTestResult(TestResult lastTestResult) {
134                this.lastTestResult = lastTestResult;
135        }
136
137
138        /**
139         * <b>Description</b>: getter method for attribute <i>actualTime</i>
140         * 
141         * @return actualTime
142         */
143        public Long getActualTime() {
144                return actualTime;
145        }
146
147        /**
148         * <b>Description</b>: setter method for attribute <i>actualTime</i>
149         * 
150         * @param actualTime
151         */
152        public void setActualTime(Long actualTime) {
153                this.actualTime = actualTime;
154        }
155
156        public String getVersionId() {
157                return versionId;
158        }
159
160        public void setVersionId(String versionId) {
161                this.versionId = versionId;
162        }
163
164        public Set<Defect> getDefects() {
165                return defects;
166        }
167
168        public void setDefects(Set<Defect> defects) {
169                this.defects = defects;
170        }
171
172        public Long getLastModifiedBy() {
173                return lastModifiedBy;
174        }
175
176        public void setLastModifiedBy(Long lastModifiedBy) {
177                this.lastModifiedBy = lastModifiedBy;
178        }
179
180        public Date getLastModifiedOn() {
181                return lastModifiedOn;
182        }
183
184        public void setLastModifiedOn(Date lastModifiedOn) {
185                this.lastModifiedOn = lastModifiedOn;
186        }
187
188        public Long getTestScheduleId() {
189                return testScheduleId;
190        }
191
192        public void setTestScheduleId(Long testScheduleId) {
193                this.testScheduleId = testScheduleId;
194        }
195
196        public long getId() {
197                return id;
198        }
199
200        public void setId(long id) {
201                this.id = id;
202        }
203
204        public Long getExecutedBy() {
205                return executedBy;
206        }
207
208        public void setExecutedBy(Long executedBy) {
209                this.executedBy = executedBy;
210        }
211
212        public Date getStartDate() {
213                return startDate;
214        }
215
216        public void setStartDate(Date startDate) {
217                this.startDate = startDate;
218        }
219
220        public String getStatus() {
221                return status;
222        }
223
224        public void setStatus(String status) {
225                this.status = status;
226        }
227}