/** * 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.extension; import java.util.Date; import com.google.gwt.user.client.rpc.IsSerializable; /** * GWTProposedSubscription * * @author jllort * */ public class GWTProposedSubscriptionReceived implements IsSerializable { private static final long serialVersionUID = 1L; private int id; private String from; private String to; private String path; private String uuid; private String type; private String comment; private boolean accepted; private Date seenDate; private Date sentDate; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public String getTo() { return to; } public void setTo(String to) { this.to = to; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getUuid() { return uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Date getSeenDate() { return seenDate; } public void setSeenDate(Date seenDate) { this.seenDate = seenDate; } public Date getSentDate() { return sentDate; } public void setSentDate(Date sentDate) { this.sentDate = sentDate; } public boolean isAccepted() { return accepted; } public void setAccepted(boolean accepted) { this.accepted = accepted; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); sb.append("id="); sb.append(id); sb.append(", from="); sb.append(from); sb.append(", to="); sb.append(to); sb.append(", path="); sb.append(path); sb.append(", uuid="); sb.append(uuid); sb.append(", type="); sb.append(type); sb.append(", accepted="); sb.append(accepted); sb.append(", seenDate="); sb.append(seenDate); sb.append(", sentDate="); sb.append(sentDate); sb.append("}"); return sb.toString(); } }