View Javadoc

1   /***
2   Copyright (C) 2005 The Java Community
3   
4   This program is free software; you can redistribute it and/or modify  it under
5   the terms of the GNU General Public License as published by  the Free Software
6   Foundation; either version 2 of the License, or  (at your option) any later
7   version.
8   
9   This program is distributed in the hope that it will be useful,  but WITHOUT
10  ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS
11  FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.
12  
13  You should have received a copy of the GNU General Public License  along with
14  this program; if not, write to the Free Software  Foundation, Inc., 59 Temple
15  Place, Suite 330, Boston, MA 02111-1307 USA.
16  
17   */
18  
19  package org.bejug.javacareers.jobs.view.jsf.preferences;
20  
21  /***
22   * Holds the user preferences
23   * 
24   * @author Peter Symoens (Last modified by $Author: bejug_cc $)
25   * @version $Revision: 1.2 $ - $Date: 2005/06/09 08:18:53 $
26   */
27  public class UserPreferences {
28      
29      /***
30       * renderjobs false.
31       */
32      private static boolean renderOpenJobs = false;
33  
34      /***
35       * @return Returns the renderOpenJobs.
36       */
37      public boolean isRenderOpenJobs() {
38          return renderOpenJobs;
39      }
40  
41      /***
42       * @param render boolean.
43       */
44      public static void setRenderOpenJobs(boolean render) {
45          renderOpenJobs = render;
46      }
47  }
48  /***
49   * $Log: UserPreferences.java,v $
50   * Revision 1.2  2005/06/09 08:18:53  bejug_cc
51   * Fix initial import
52   *
53   * Revision 1.1  2005/05/18 10:00:17  PSONG09
54   * changed employerPrefs to userPrefs
55   *
56   * Revision 1.3  2005/05/11 16:18:44  sja
57   * Added CVS tags.
58   *
59   */