| Index: chrome_release_test_status/src/dashboard/RegisterFeature.java
|
| ===================================================================
|
| --- chrome_release_test_status/src/dashboard/RegisterFeature.java (revision 0)
|
| +++ chrome_release_test_status/src/dashboard/RegisterFeature.java (revision 0)
|
| @@ -0,0 +1,95 @@
|
| +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 RegisterFeature {
|
| + @PrimaryKey
|
| + @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
|
| + private Key key;
|
| +
|
| + @Persistent
|
| + private String feature_name;
|
| +
|
| + @Persistent
|
| + private String feature_type;
|
| +
|
| + @Persistent
|
| + private String related_docs;
|
| +
|
| + @Persistent
|
| + private String notes;
|
| +
|
| + @Persistent
|
| + private String mile_stone;
|
| +
|
| + @Persistent
|
| + private Date date;
|
| +
|
| + public RegisterFeature(String feature_name, String related_docs, String feature_type, String mile_stone, String notes, Date date) {
|
| + this.feature_name = feature_name;
|
| + this.related_docs = related_docs;
|
| + this.feature_type = feature_type;
|
| + this.mile_stone = mile_stone;
|
| + this.notes = notes;
|
| + this.date = date;
|
| + }
|
| +
|
| + public Key getKey() {
|
| + return key;
|
| + }
|
| +
|
| + public String getFeatureName() {
|
| + return feature_name;
|
| + }
|
| +
|
| + public String getFeatureType() {
|
| + return feature_type;
|
| + }
|
| +
|
| + public String getRelatedDocs() {
|
| + return related_docs;
|
| + }
|
| +
|
| + public String getNotes() {
|
| + return notes;
|
| + }
|
| +
|
| + public String getMileStone() {
|
| + return mile_stone;
|
| + }
|
| +
|
| + public Date getDate() {
|
| + return date;
|
| + }
|
| + public void setFeatureName(String feature_name) {
|
| + this.feature_name = feature_name;
|
| + }
|
| +
|
| + public void setFeatureType(String feature_type) {
|
| + this.feature_type = feature_type;
|
| + }
|
| +
|
| + public void setRelatedDocs(String related_docs) {
|
| + this.related_docs = related_docs;
|
| + }
|
| +
|
| + public void setNotes(String notes) {
|
| + this.notes = notes;
|
| + }
|
| +
|
| + public void setMileStone(String mile_stone) {
|
| + this.mile_stone = mile_stone;
|
| + }
|
| +
|
| + public void setDate(Date date) {
|
| + this.date = date;
|
| + }
|
| +}
|
|
|