| Index: chrome_release_test_status/src/dashboard/MacTestStatus.java
|
| ===================================================================
|
| --- chrome_release_test_status/src/dashboard/MacTestStatus.java (revision 0)
|
| +++ chrome_release_test_status/src/dashboard/MacTestStatus.java (revision 0)
|
| @@ -0,0 +1,146 @@
|
| +package mydemo;
|
| +
|
| +import com.google.appengine.api.datastore.Key;
|
| +import com.google.appengine.api.users.User;
|
| +
|
| +import java.util.Date;
|
| +import javax.jdo.annotations.IdGeneratorStrategy;
|
| +import javax.jdo.annotations.PersistenceCapable;
|
| +import javax.jdo.annotations.Persistent;
|
| +import javax.jdo.annotations.PrimaryKey;
|
| +
|
| +@PersistenceCapable
|
| +public class MacTestStatus {
|
| + @PrimaryKey
|
| + @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
|
| + private Key key;
|
| +
|
| + @Persistent
|
| + private String feature_name;
|
| +
|
| + @Persistent
|
| + private String test_status_lp;
|
| +
|
| + @Persistent
|
| + private String test_status_slp;
|
| +
|
| + @Persistent
|
| + private String build_number;
|
| +
|
| + @Persistent
|
| + private String test_type_lp;
|
| +
|
| + @Persistent
|
| + private String test_type_slp;
|
| +
|
| + @Persistent
|
| + private String notes;
|
| +
|
| + @Persistent
|
| + private String lp_tester;
|
| +
|
| + @Persistent
|
| + private String slp_tester;
|
| +
|
| + @Persistent
|
| + private Date date;
|
| +
|
| + public MacTestStatus(String feature_name, String test_status_lp, String test_status_slp, String build_number,
|
| + String test_type_lp, String test_type_slp, String notes, String lp_tester, String slp_tester,
|
| + Date date) {
|
| + this.feature_name = feature_name;
|
| + this.test_status_lp = test_status_lp;
|
| + this.test_status_slp = test_status_slp;
|
| + this.build_number = build_number;
|
| + this.test_type_lp = test_type_lp;
|
| + this.test_type_slp = test_type_slp;
|
| + this.notes = notes;
|
| + this.lp_tester = lp_tester;
|
| + this.slp_tester = slp_tester;
|
| + this.date = date;
|
| + }
|
| +
|
| + public Key getKey() {
|
| + return key;
|
| + }
|
| +
|
| + public String getFeatureName() {
|
| + return feature_name;
|
| + }
|
| +
|
| + public String getStatusLP() {
|
| + return test_status_lp;
|
| + }
|
| +
|
| + public String getStatusSLP() {
|
| + return test_status_slp;
|
| + }
|
| +
|
| + public String getBuildNumber() {
|
| + return build_number;
|
| + }
|
| +
|
| + public String getTestTypeLP() {
|
| + return test_type_lp;
|
| + }
|
| +
|
| + public String getTestTypeSLP() {
|
| + return test_type_slp;
|
| + }
|
| +
|
| + public String getNotes() {
|
| + return notes;
|
| + }
|
| +
|
| + public String getLPTester() {
|
| + return lp_tester;
|
| + }
|
| +
|
| + public String getSLPTester() {
|
| + return slp_tester;
|
| + }
|
| +
|
| + public Date getDate() {
|
| + return date;
|
| + }
|
| +
|
| + public void setFeatureName(String feature_name) {
|
| + this.feature_name = feature_name;
|
| + }
|
| +
|
| + public void setStatusLP(String test_status_lp) {
|
| + this.test_status_lp = test_status_lp;
|
| + }
|
| +
|
| + public void setStatusSLP(String test_status_slp) {
|
| + this.test_status_slp = test_status_slp;
|
| + }
|
| +
|
| + public void setBuildNumber(String build_number) {
|
| + this.build_number = build_number;
|
| + }
|
| +
|
| + public void setTestTypeLP(String test_type_lp) {
|
| + this.test_type_lp = test_type_lp;
|
| + }
|
| +
|
| + public void setTestTypeSLP(String test_type_slp) {
|
| + this.test_type_slp = test_type_slp;
|
| + }
|
| +
|
| + public void setNotes(String notes) {
|
| + this.notes = notes;
|
| + }
|
| +
|
| + public void setLPTester(String lp_tester) {
|
| + this.lp_tester = lp_tester;
|
| + }
|
| +
|
| + public void setSLPTester(String slp_tester) {
|
| + this.slp_tester = slp_tester;
|
| + }
|
| +
|
| + public void setDate(Date date) {
|
| + this.date = date;
|
| + }
|
| +}
|
|
|