OLD | NEW |
(Empty) | |
| 1 package mydemo; |
| 2 |
| 3 import com.google.appengine.api.datastore.Key; |
| 4 import com.google.appengine.api.users.User; |
| 5 |
| 6 import java.util.Date; |
| 7 import javax.jdo.annotations.IdGeneratorStrategy; |
| 8 import javax.jdo.annotations.PersistenceCapable; |
| 9 import javax.jdo.annotations.Persistent; |
| 10 import javax.jdo.annotations.PrimaryKey; |
| 11 |
| 12 @PersistenceCapable |
| 13 public class MacTestStatus { |
| 14 @PrimaryKey |
| 15 @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) |
| 16 private Key key; |
| 17 |
| 18 @Persistent |
| 19 private String feature_name; |
| 20 |
| 21 @Persistent |
| 22 private String test_status_lp; |
| 23 |
| 24 @Persistent |
| 25 private String test_status_slp; |
| 26 |
| 27 @Persistent |
| 28 private String build_number; |
| 29 |
| 30 @Persistent |
| 31 private String test_type_lp; |
| 32 |
| 33 @Persistent |
| 34 private String test_type_slp; |
| 35 |
| 36 @Persistent |
| 37 private String notes; |
| 38 |
| 39 @Persistent |
| 40 private String lp_tester; |
| 41 |
| 42 @Persistent |
| 43 private String slp_tester; |
| 44 |
| 45 @Persistent |
| 46 private Date date; |
| 47 |
| 48 public MacTestStatus(String feature_name, String test_status_lp, String test
_status_slp, String build_number, |
| 49 String test_type_lp, String test_type_slp, String
notes, String lp_tester, String slp_tester, |
| 50 Date date) { |
| 51 this.feature_name = feature_name; |
| 52 this.test_status_lp = test_status_lp; |
| 53 this.test_status_slp = test_status_slp; |
| 54 this.build_number = build_number; |
| 55 this.test_type_lp = test_type_lp; |
| 56 this.test_type_slp = test_type_slp; |
| 57 this.notes = notes; |
| 58 this.lp_tester = lp_tester; |
| 59 this.slp_tester = slp_tester; |
| 60 this.date = date; |
| 61 } |
| 62 |
| 63 public Key getKey() { |
| 64 return key; |
| 65 } |
| 66 |
| 67 public String getFeatureName() { |
| 68 return feature_name; |
| 69 } |
| 70 |
| 71 public String getStatusLP() { |
| 72 return test_status_lp; |
| 73 } |
| 74 |
| 75 public String getStatusSLP() { |
| 76 return test_status_slp; |
| 77 } |
| 78 |
| 79 public String getBuildNumber() { |
| 80 return build_number; |
| 81 } |
| 82 |
| 83 public String getTestTypeLP() { |
| 84 return test_type_lp; |
| 85 } |
| 86 |
| 87 public String getTestTypeSLP() { |
| 88 return test_type_slp; |
| 89 } |
| 90 |
| 91 public String getNotes() { |
| 92 return notes; |
| 93 } |
| 94 |
| 95 public String getLPTester() { |
| 96 return lp_tester; |
| 97 } |
| 98 |
| 99 public String getSLPTester() { |
| 100 return slp_tester; |
| 101 } |
| 102 |
| 103 public Date getDate() { |
| 104 return date; |
| 105 } |
| 106 |
| 107 public void setFeatureName(String feature_name) { |
| 108 this.feature_name = feature_name; |
| 109 } |
| 110 |
| 111 public void setStatusLP(String test_status_lp) { |
| 112 this.test_status_lp = test_status_lp; |
| 113 } |
| 114 |
| 115 public void setStatusSLP(String test_status_slp) { |
| 116 this.test_status_slp = test_status_slp; |
| 117 } |
| 118 |
| 119 public void setBuildNumber(String build_number) { |
| 120 this.build_number = build_number; |
| 121 } |
| 122 |
| 123 public void setTestTypeLP(String test_type_lp) { |
| 124 this.test_type_lp = test_type_lp; |
| 125 } |
| 126 |
| 127 public void setTestTypeSLP(String test_type_slp) { |
| 128 this.test_type_slp = test_type_slp; |
| 129 } |
| 130 |
| 131 public void setNotes(String notes) { |
| 132 this.notes = notes; |
| 133 } |
| 134 |
| 135 public void setLPTester(String lp_tester) { |
| 136 this.lp_tester = lp_tester; |
| 137 } |
| 138 |
| 139 public void setSLPTester(String slp_tester) { |
| 140 this.slp_tester = slp_tester; |
| 141 } |
| 142 |
| 143 public void setDate(Date date) { |
| 144 this.date = date; |
| 145 } |
| 146 } |
OLD | NEW |