001: /**
002: * LibreSource
003: * Copyright (C) 2004-2008 Artenum SARL / INRIA
004: * http://www.libresource.org - contact@artenum.com
005: *
006: * This file is part of the LibreSource software,
007: * which can be used and distributed under license conditions.
008: * The license conditions are provided in the LICENSE.TXT file
009: * at the root path of the packaging that enclose this file.
010: * More information can be found at
011: * - http://dev.libresource.org/home/license
012: *
013: * Initial authors :
014: *
015: * Guillaume Bort / INRIA
016: * Francois Charoy / Universite Nancy 2
017: * Julien Forest / Artenum
018: * Claude Godart / Universite Henry Poincare
019: * Florent Jouille / INRIA
020: * Sebastien Jourdain / INRIA / Artenum
021: * Yves Lerumeur / Artenum
022: * Pascal Molli / Universite Henry Poincare
023: * Gerald Oster / INRIA
024: * Mariarosa Penzi / Artenum
025: * Gerard Sookahet / Artenum
026: * Raphael Tani / INRIA
027: *
028: * Contributors :
029: *
030: * Stephane Bagnier / Artenum
031: * Amadou Dia / Artenum-IUP Blois
032: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
033: */package org.libresource.so6.server.ls;
034:
035: import java.io.Serializable;
036:
037: import java.util.Date;
038:
039: /**
040: * @author <a href="mailto:jourdain@loria.fr">Sebastien Jourdain</a> - <a href="http://www.inria.fr">INRIA Lorraine</a>
041: */
042: public class PatchBean implements Serializable {
043: private long fromTicket;
044: private long toTicket;
045: private String wsName;
046: private String comment;
047: private Date creationDate;
048: private String files;
049: private long patchSize;
050: private String tagName;
051: private boolean tagged;
052:
053: public String getComment() {
054: return comment;
055: }
056:
057: public Date getCreationDate() {
058: return creationDate;
059: }
060:
061: public long getFromTicket() {
062: return fromTicket;
063: }
064:
065: public long getToTicket() {
066: return toTicket;
067: }
068:
069: public String getWsName() {
070: return wsName;
071: }
072:
073: public void setComment(String string) {
074: comment = string;
075: }
076:
077: public void setCreationDate(Date date) {
078: creationDate = date;
079: }
080:
081: public void setFromTicket(long i) {
082: fromTicket = i;
083: }
084:
085: public void setToTicket(long i) {
086: toTicket = i;
087: }
088:
089: public void setWsName(String string) {
090: wsName = string;
091: }
092:
093: public String getFiles() {
094: return files;
095: }
096:
097: public void setFiles(String list) {
098: files = list;
099: }
100:
101: public long getPatchSize() {
102: return patchSize;
103: }
104:
105: public void setPatchSize(long l) {
106: patchSize = l;
107: }
108:
109: public String getTagName() {
110: return tagName;
111: }
112:
113: public void setTagName(String tagName) {
114: this .tagName = tagName;
115: }
116:
117: public boolean isTagged() {
118: return tagged;
119: }
120:
121: public boolean getTagged() {
122: return tagged;
123: }
124:
125: public void setTagged(boolean tagged) {
126: this.tagged = tagged;
127: }
128: }
|