/* * P4Java - java integration with Perforce SCM * Copyright (C) 2007-, Mike Wille, Tek42 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * You can contact the author at: * * Web: http://tek42.com * Email: mike@tek42.com * Mail: 755 W Big Beaver Road * Suite 1110 * Troy, MI 48084 */ package com.tek42.perforce.model; /** * Represents a Perforce Label. * * @author Mike Wille */ public class Label extends AbstractViewsSupport implements java.io.Serializable { String name; String update; String access; String owner; String description; String options; String revision; public Label() { super(); name = ""; update = ""; access = ""; owner = ""; description = ""; options = ""; } /** * @return the name */ public String getName() { return name; } /** * @param name * the name to set */ public void setName(String name) { this.name = name; } /** * @return the update */ public String getUpdate() { return update; } /** * @param update * the update to set */ public void setUpdate(String update) { this.update = update; } /** * @return the access */ public String getAccess() { return access; } /** * @param access * the access to set */ public void setAccess(String access) { this.access = access; } /** * @return the owner */ public String getOwner() { return owner; } /** * @param owner * the owner to set */ public void setOwner(String owner) { this.owner = owner; } /** * @return the description */ public String getDescription() { return description; } /** * @param description * the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the options */ public String getOptions() { return options; } /** * @param options * the options to set */ public void setOptions(String options) { this.options = options; } /** * @return the revision */ public String getRevision() { return revision; } /** * @param revision * the revision to set */ public void setRevision(String revision) { this.revision = revision; } }