001package com.thed.model; 002 003import java.util.Date; 004 005public class TestStepResult implements java.io.Serializable { 006 007 private static final long serialVersionUID = 1L; 008 private Long id; 009 private String comment; 010 private String status; 011 private Long testStepId; 012 private Long releaseTestScheduleId; 013 private Long cyclePhaseId; 014 private Date executionDate; 015 016 /** 017 * @return the status 018 */ 019 public String getStatus() { 020 return status; 021 } 022 023 /** 024 * @param status 025 * the status to set 026 */ 027 public void setStatus(String status) { 028 this.status = status; 029 } 030 031 public TestStepResult() { 032 033 } 034 035 /** 036 * @param comment 037 * @param cyclePhaseId 038 * @param id 039 * @param releaseTestScheduleId 040 * @param status 041 * @param testStepId 042 */ 043 public TestStepResult(String comment, Long cyclePhaseId, long id, Long releaseTestScheduleId, String status, 044 Long testStepId) { 045 this.comment = comment; 046 this.cyclePhaseId = cyclePhaseId; 047 this.id = id; 048 this.releaseTestScheduleId = releaseTestScheduleId; 049 this.status = status; 050 this.testStepId = testStepId; 051 } 052 053 /** 054 * <b>Description</b>: getter method for attribute <i>id</i> 055 * 056 * @return id 057 */ 058 public Long getId() { 059 return this.id; 060 } 061 062 /** 063 * <b>Description</b>: setter method for attribute <i>id</i> 064 * 065 * @param id 066 */ 067 public void setId(Long id) { 068 this.id = id; 069 } 070 071 /** 072 * @return the comment 073 */ 074 public String getComment() { 075 return comment; 076 } 077 078 /** 079 * @param comment 080 * the comment to set 081 */ 082 public void setComment(String comment) { 083 this.comment = comment; 084 } 085 086 /** 087 * @return the testStepId 088 */ 089 public Long getTestStepId() { 090 return testStepId; 091 } 092 093 /** 094 * @param testStepId 095 * the testStepId to set 096 */ 097 public void setTestStepId(Long testStepId) { 098 this.testStepId = testStepId; 099 } 100 101 /** 102 * @return the releaseTestScheduleId 103 */ 104 public Long getReleaseTestScheduleId() { 105 return releaseTestScheduleId; 106 } 107 108 /** 109 * @param releaseTestScheduleId 110 * the releaseTestScheduleId to set 111 */ 112 public void setReleaseTestScheduleId(Long releaseTestScheduleId) { 113 this.releaseTestScheduleId = releaseTestScheduleId; 114 } 115 116 /** 117 * @return the cyclePhaseId 118 */ 119 public Long getCyclePhaseId() { 120 return cyclePhaseId; 121 } 122 123 /** 124 * @param cyclePhaseId 125 * the cyclePhaseId to set 126 */ 127 public void setCyclePhaseId(Long cyclePhaseId) { 128 this.cyclePhaseId = cyclePhaseId; 129 } 130 131 public Date getExecutionDate() { 132 return this.executionDate; 133 } 134 135 public void setExecutionDate(Date executionDate) { 136 this.executionDate = executionDate; 137 } 138 139}