/** * 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.bean.workflow; import java.io.Serializable; public class Transition implements Serializable, Comparable<Transition> { private static final long serialVersionUID = 9113136516768190724L; private long id; private String name; private String from; private String to; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTo() { return to; } public void setTo(String to) { this.to = to; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public int compareTo(Transition arg0) { return new Long(this.id).compareTo(arg0.id) ; } public String toString() { StringBuffer sb = new StringBuffer(); sb.append("["); sb.append("id="); sb.append(id); sb.append(", name="); sb.append(name); sb.append(", from="); sb.append(from); sb.append(", to="); sb.append(to); sb.append("]"); return sb.toString(); } }