Index: chrome_release_test_status/src/dashboard/MstoneInfo.java |
=================================================================== |
--- chrome_release_test_status/src/dashboard/MstoneInfo.java (revision 0) |
+++ chrome_release_test_status/src/dashboard/MstoneInfo.java (revision 0) |
@@ -0,0 +1,48 @@ |
+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 MstoneInfo { |
+ @PrimaryKey |
+ @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) |
+ private Key key; |
+ |
+ @Persistent |
+ private String mile_stone; |
+ |
+ @Persistent |
+ private Date date; |
+ |
+ public MstoneInfo(String mile_stone, Date date) { |
+ this.mile_stone = mile_stone; |
+ this.date = date; |
+ } |
+ |
+ public Key getKey() { |
+ return key; |
+ } |
+ |
+ public String getMileStone() { |
+ return mile_stone; |
+ } |
+ |
+ public Date getDate() { |
+ return date; |
+ } |
+ |
+ public void setMileStone(String mile_stone) { |
+ this.mile_stone = mile_stone; |
+ } |
+ |
+ public void setDate(Date date) { |
+ this.date = date; |
+ } |
+} |