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 PendingEventData implements Serializable {
21  
22  	/**
23  	 * 
24  	 */
25  	private static final long serialVersionUID = 1L;
26  
27  	private String nom;
28  
29  	private String prenom;
30  
31  	private String datedeb;
32  
33  	private String datefin;
34  
35  	private String nbjours;
36  
37  	private String raison;
38  
39  	private String id;
40  
41  	private String maxnbjours;
42  
43  	private String totnbjours;
44  
45  	private String type;
46  
47  	private String idcal;
48  
49  	private boolean cbmatin;
50  
51  	private boolean cbaprem;
52  
53  	/**
54  	 * 
55  	 */
56  	public PendingEventData() {
57  		super();
58  	}
59  
60  	/**
61  	 * @return datedeb
62  	 */
63  	public String getDatedeb() {
64  		return datedeb;
65  	}
66  
67  	/**
68  	 * @return datefin
69  	 */
70  	public String getDatefin() {
71  		return datefin;
72  	}
73  
74  	/**
75  	 * @return id
76  	 */
77  	public String getId() {
78  		return id;
79  	}
80  
81  	/**
82  	 * @return maxnbjours
83  	 */
84  	public String getMaxnbjours() {
85  		return maxnbjours;
86  	}
87  
88  	/**
89  	 * @return nbjours
90  	 */
91  	public String getNbjours() {
92  		return nbjours;
93  	}
94  
95  	/**
96  	 * @return nom
97  	 */
98  	public String getNom() {
99  		return nom;
100 	}
101 
102 	/**
103 	 * @return prenom
104 	 */
105 	public String getPrenom() {
106 		return prenom;
107 	}
108 
109 	/**
110 	 * @return raison
111 	 */
112 	public String getRaison() {
113 		return raison;
114 	}
115 
116 	/**
117 	 * @return totnbjours
118 	 */
119 	public String getTotnbjours() {
120 		return totnbjours;
121 	}
122 
123 	/**
124 	 * @param string
125 	 */
126 	public void setDatedeb(String string) {
127 		datedeb = string;
128 	}
129 
130 	/**
131 	 * @param string
132 	 */
133 	public void setDatefin(String string) {
134 		datefin = string;
135 	}
136 
137 	/**
138 	 * @param string
139 	 */
140 	public void setId(String string) {
141 		id = string;
142 	}
143 
144 	/**
145 	 * @param string
146 	 */
147 	public void setMaxnbjours(String string) {
148 		maxnbjours = string;
149 	}
150 
151 	/**
152 	 * @param string
153 	 */
154 	public void setNbjours(String string) {
155 		nbjours = string;
156 	}
157 
158 	/**
159 	 * @param string
160 	 */
161 	public void setNom(String string) {
162 		nom = string;
163 	}
164 
165 	/**
166 	 * @param string
167 	 */
168 	public void setPrenom(String string) {
169 		prenom = string;
170 	}
171 
172 	/**
173 	 * @param string
174 	 */
175 	public void setRaison(String string) {
176 		raison = string;
177 	}
178 
179 	/**
180 	 * @param string
181 	 */
182 	public void setTotnbjours(String string) {
183 		totnbjours = string;
184 	}
185 
186 	/**
187 	 * @return type
188 	 */
189 	public String getType() {
190 		return type;
191 	}
192 
193 	/**
194 	 * @param string
195 	 */
196 	public void setType(String string) {
197 		type = string;
198 	}
199 
200 	/**
201 	 * @return idcal
202 	 */
203 	public String getIdcal() {
204 		return idcal;
205 	}
206 
207 	/**
208 	 * @param string
209 	 */
210 	public void setIdcal(String string) {
211 		idcal = string;
212 	}
213 
214 	/**
215 	 * @return cbaprem
216 	 */
217 	public boolean isCbaprem() {
218 		return cbaprem;
219 	}
220 
221 	/**
222 	 * @return cbmatin
223 	 */
224 	public boolean isCbmatin() {
225 		return cbmatin;
226 	}
227 
228 	/**
229 	 * @param b
230 	 */
231 	public void setCbaprem(boolean b) {
232 		cbaprem = b;
233 	}
234 
235 	/**
236 	 * @param b
237 	 */
238 	public void setCbmatin(boolean b) {
239 		cbmatin = b;
240 	}
241 
242 }