Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: chrome_release_test_status/src/dashboard/MacTestStatus.java

Issue 2831022: The following java and jsp files will collect the Chrome release testing stat... Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698