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 Stephane Gauchet 10 mail me at : sgauchet@free.fr 11 */ 12 package fr.hyphonem.conges.data; 13 14 import java.util.Hashtable; 15 16 /** 17 * @author Stephane Gauchet pour Hyphonem 18 */ 19 public class GetMaxDaysReturnBean { 20 21 /** 22 * hashtable contenant tous les jours dans la periode 23 */ 24 private Hashtable ht; 25 /** 26 * debut periode 27 */ 28 private String debper; 29 /** 30 * fin periode 31 */ 32 private String finper; 33 34 /** 35 * @return Returns the debper. 36 */ 37 public final String getDebper() { 38 return debper; 39 } 40 41 /** 42 * @param debper 43 * The debper to set. 44 */ 45 public final void setDebper(String pdebper) { 46 debper = pdebper; 47 } 48 49 /** 50 * @return Returns the finper. 51 */ 52 public final String getFinper() { 53 return finper; 54 } 55 56 /** 57 * @param finper 58 * The finper to set. 59 */ 60 public final void setFinper(String pfinper) { 61 finper = pfinper; 62 } 63 64 /** 65 * @return Returns the ht. 66 */ 67 public final Hashtable getHt() { 68 return ht; 69 } 70 71 /** 72 * @param ht 73 * The ht to set. 74 */ 75 public final void setHt(Hashtable pht) { 76 ht = pht; 77 } 78 }