View Javadoc

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  
16  /**
17   * @author Stephane Gauchet pour Hyphonem
18   * 
19   */
20  public class ParamsData implements Serializable {
21  
22  	/**
23  	 * 
24  	 */
25  	private static final long serialVersionUID = 1L;
26  
27  	private String reason;
28  
29  	private String nbJours;
30  
31  	private String dateDebut;
32  
33  	private String dateFin;
34  
35  	private String type;
36  
37  	/**
38  	 * constructeur
39  	 */
40  	public ParamsData() {
41  		super();
42  	}
43  
44  	/**
45  	 * @return dateDebut
46  	 */
47  	public String getDateDebut() {
48  		return dateDebut;
49  	}
50  
51  	/**
52  	 * @return dateFin
53  	 */
54  	public String getDateFin() {
55  		return dateFin;
56  	}
57  
58  	/**
59  	 * @return nbJours
60  	 */
61  	public String getNbJours() {
62  		return nbJours;
63  	}
64  
65  	/**
66  	 * @return pReason
67  	 */
68  	public String getReason() {
69  		return reason;
70  	}
71  
72  	/**
73  	 * @param pDateDebut
74  	 */
75  	public void setDateDebut(String pDateDebut) {
76  		dateDebut = pDateDebut;
77  	}
78  
79  	/**
80  	 * @param pDateFin
81  	 */
82  	public void setDateFin(String pDateFin) {
83  		dateFin = pDateFin;
84  	}
85  
86  	/**
87  	 * @param pNbJoursJours
88  	 */
89  	public void setNbJours(String pNbJours) {
90  		nbJours = pNbJours;
91  	}
92  
93  	/**
94  	 * @param pReason
95  	 */
96  	public void setReason(String pReason) {
97  		reason = pReason;
98  	}
99  
100 	/**
101 	 * type de calcul du nb de conges - holidays calculation type
102 	 * 
103 	 * @return type
104 	 */
105 	public String getType() {
106 		return type;
107 	}
108 
109 /**
110  * 
111  * @param pType
112  */
113 	public void setType(String pType) {
114 		type = pType;
115 	}
116 }