1 /*Copyright (C) 2004-... Stephane Gauchet for Hyphonem 2 3 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. 4 5 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. 6 7 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 8 9 Written by St�phane Gauchet 10 mail me at : sgauchet@free.fr 11 */ 12 package fr.hyphonem.conges.data; 13 14 import java.io.Serializable; 15 import java.util.Date; 16 17 /** 18 * @author Stephane Gauchet pour Hyphonem 19 * 20 */ 21 public class PeriodParamsData implements Serializable { 22 23 /** 24 * 25 */ 26 private static final long serialVersionUID = 1L; 27 28 private Date fromDate; 29 30 private Date endDate; 31 32 /** 33 * @return Returns the endDate. 34 */ 35 public Date getEndDate() { 36 return endDate; 37 } 38 39 /** 40 * @param endDate 41 * The endDate to set. 42 */ 43 public void setEndDate(Date endDate) { 44 this.endDate = endDate; 45 } 46 47 /** 48 * @return Returns the fromDate. 49 */ 50 public Date getFromDate() { 51 return fromDate; 52 } 53 54 /** 55 * @param fromDate 56 * The fromDate to set. 57 */ 58 public void setFromDate(Date fromDate) { 59 this.fromDate = fromDate; 60 } 61 }