/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.frontend.client.bean; import java.util.Date; import java.util.List; import com.google.gwt.user.client.rpc.IsSerializable; /** * GWTTaskInstance * * @author jllort * */ public class GWTTaskInstance implements IsSerializable { private double id; private String name; private String description; private String actorId; private Date create; private Date start; private Date dueDate; private List<GWTComment> comments; private GWTProcessInstance processInstance; /** * GWTTaskInstance */ public GWTTaskInstance() { } public double getId() { return id; } public void setId(double id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getActorId() { return actorId; } public void setActorId(String actorId) { this.actorId = actorId; } public Date getCreate() { return create; } public void setCreate(Date create) { this.create = create; } public GWTProcessInstance getProcessInstance() { return processInstance; } public void setProcessInstance(GWTProcessInstance processInstance) { this.processInstance = processInstance; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Date getStart() { return start; } public void setStart(Date start) { this.start = start; } public Date getDueDate() { return dueDate; } public void setDueDate(Date dueDate) { this.dueDate = dueDate; } public List<GWTComment> getComments() { return comments; } public void setComments(List<GWTComment> comments) { this.comments = comments; } }