| Index: chrome_release_test_status/src/dashboard/LinuxTestStatus.java
|
| ===================================================================
|
| --- chrome_release_test_status/src/dashboard/LinuxTestStatus.java (revision 0)
|
| +++ chrome_release_test_status/src/dashboard/LinuxTestStatus.java (revision 0)
|
| @@ -0,0 +1,216 @@
|
| +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 LinuxTestStatus {
|
| + @PrimaryKey
|
| + @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
|
| + private Key key;
|
| +
|
| + @Persistent
|
| + private String feature_name;
|
| +
|
| + @Persistent
|
| + private String test_status_gb;
|
| +
|
| + @Persistent
|
| + private String test_status_ub;
|
| +
|
| + @Persistent
|
| + private String test_status_os;
|
| +
|
| + @Persistent
|
| + private String test_status_fd;
|
| +
|
| + @Persistent
|
| + private String build_number;
|
| +
|
| + @Persistent
|
| + private String test_type_gb;
|
| +
|
| + @Persistent
|
| + private String test_type_ub;
|
| +
|
| + @Persistent
|
| + private String test_type_os;
|
| +
|
| + @Persistent
|
| + private String test_type_fd;
|
| +
|
| + @Persistent
|
| + private String notes;
|
| +
|
| + @Persistent
|
| + private String gb_tester;
|
| +
|
| + @Persistent
|
| + private String ub_tester;
|
| +
|
| + @Persistent
|
| + private String os_tester;
|
| +
|
| + @Persistent
|
| + private String fd_tester;
|
| +
|
| + @Persistent
|
| + private Date date;
|
| +
|
| + public LinuxTestStatus(String feature_name, String test_status_gb, String test_status_ub, String test_status_os, String test_status_fd, String build_number,
|
| + String test_type_gb, String test_type_ub, String test_type_os, String test_type_fd, String notes, String gb_tester, String ub_tester,
|
| + String os_tester, String fd_tester, Date date) {
|
| + this.feature_name = feature_name;
|
| + this.test_status_gb = test_status_gb;
|
| + this.test_status_ub = test_status_ub;
|
| + this.test_status_os = test_status_os;
|
| + this.test_status_fd = test_status_fd;
|
| + this.build_number = build_number;
|
| + this.test_type_gb = test_type_gb;
|
| + this.test_type_ub = test_type_ub;
|
| + this.test_type_os = test_type_os;
|
| + this.test_type_fd = test_type_fd;
|
| + this.notes = notes;
|
| + this.gb_tester = gb_tester;
|
| + this.ub_tester = ub_tester;
|
| + this.os_tester = os_tester;
|
| + this.fd_tester = fd_tester;
|
| + this.date = date;
|
| + }
|
| +
|
| + public Key getKey() {
|
| + return key;
|
| + }
|
| +
|
| + public String getFeatureName() {
|
| + return feature_name;
|
| + }
|
| +
|
| + public String getStatusGB() {
|
| + return test_status_gb;
|
| + }
|
| +
|
| + public String getStatusUB() {
|
| + return test_status_ub;
|
| + }
|
| +
|
| + public String getStatusOS() {
|
| + return test_status_os;
|
| + }
|
| +
|
| + public String getStatusFD() {
|
| + return test_status_fd;
|
| + }
|
| +
|
| + public String getBuildNumber() {
|
| + return build_number;
|
| + }
|
| +
|
| + public String getTestTypeGB() {
|
| + return test_type_gb;
|
| + }
|
| +
|
| + public String getTestTypeUB() {
|
| + return test_type_ub;
|
| + }
|
| +
|
| + public String getTestTypeOS() {
|
| + return test_type_os;
|
| + }
|
| +
|
| + public String getTestTypeFD() {
|
| + return test_type_fd;
|
| + }
|
| +
|
| + public String getNotes() {
|
| + return notes;
|
| + }
|
| +
|
| + public String getGBTester() {
|
| + return gb_tester;
|
| + }
|
| +
|
| + public String getUBTester() {
|
| + return ub_tester;
|
| + }
|
| +
|
| + public String getOSTester() {
|
| + return os_tester;
|
| + }
|
| +
|
| + public String getFDTester() {
|
| + return fd_tester;
|
| + }
|
| +
|
| + public Date getDate() {
|
| + return date;
|
| + }
|
| +
|
| + public void setFeatureName(String feature_name) {
|
| + this.feature_name = feature_name;
|
| + }
|
| +
|
| + public void setStatusGB(String test_status_gb) {
|
| + this.test_status_gb = test_status_gb;
|
| + }
|
| +
|
| + public void setStatusUB(String test_status_ub) {
|
| + this.test_status_ub = test_status_ub;
|
| + }
|
| +
|
| + public void setStatusOS(String test_status_os) {
|
| + this.test_status_os = test_status_os;
|
| + }
|
| +
|
| + public void setStatusFD(String test_status_fd) {
|
| + this.test_status_fd = test_status_fd;
|
| + }
|
| +
|
| + public void setBuildNumber(String build_number) {
|
| + this.build_number = build_number;
|
| + }
|
| +
|
| + public void setTestTypeGB(String test_type_gb) {
|
| + this.test_type_gb = test_type_gb;
|
| + }
|
| +
|
| + public void setTestTypeUB(String test_type_ub) {
|
| + this.test_type_ub = test_type_ub;
|
| + }
|
| +
|
| + public void setTestTypeOS(String test_type_os) {
|
| + this.test_type_os = test_type_os;
|
| + }
|
| +
|
| + public void setTestTypeFD(String test_type_fd) {
|
| + this.test_type_fd = test_type_fd;
|
| + }
|
| +
|
| + public void setNotes(String notes) {
|
| + this.notes = notes;
|
| + }
|
| +
|
| + public void setGBTester(String gb_tester) {
|
| + this.gb_tester = gb_tester;
|
| + }
|
| +
|
| + public void setUBTester(String ub_tester) {
|
| + this.ub_tester = ub_tester;
|
| + }
|
| +
|
| + public void setOSTester(String os_tester) {
|
| + this.os_tester = os_tester;
|
| + }
|
| + public void setFDTester(String fd_tester) {
|
| + this.fd_tester = fd_tester;
|
| + }
|
| + public void setDate(Date date) {
|
| + this.date = date;
|
| + }
|
| +}
|
|
|