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.forms;
13  
14  import org.apache.struts.action.ActionForm;
15  
16  /**
17   * @author Stephane Gauchet pour Hyphonem
18   * 
19   */
20  public class ChooseUserForm extends ActionForm {
21  	/**
22  	 * 
23  	 */
24  	private static final long serialVersionUID = 1L;
25  
26  	private String choixUser;
27  
28  	/**
29  	 * @return choixUser
30  	 */
31  	public String getChoixUser() {
32  		return choixUser;
33  	}
34  
35  	/**
36  	 * @param string
37  	 */
38  	public void setChoixUser(String string) {
39  		choixUser = string;
40  	}
41  }