Hello, i have Entity that contains a String with the author code

@Entity
public class Todo {
        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        private Long id;
        private String author;

        private String summary;
        private String description;
        private Date date;
        boolean finished;

        public Todo(String author, String summary, String description,
                        Date date) {
                this.author = author;
                this.summary = summary;
                this.description = description;
                this.setDate(date);
                finished = false;
        }

        public Long getId() {
                return id;
        }

        public String getAuthor() {
                return author;
        }


how to create a user app engine Object with this code?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to