package org.cloudfoundry.identity.samples.resource.server; import java.util.Date; public class Todo { private String id; private String todo; private Date created; private Date updated; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getTodo() { return todo; } public void setTodo(String todo) { this.todo = todo; } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getUpdated() { return updated; } public void setUpdated(Date updated) { this.updated = updated; } }