1 package org.bejug.javacareers.common.view.jsf.constants;
2
3 /***
4 * Constants for the JSF framework
5 *
6 * @author : Peter Symoens (Last modified by $Author: schauwvliege $)
7 * @version $Revision: 1.6 $ - $Date: 2005/09/05 09:20:07 $:
8 */
9 public interface JSFConstants {
10
11
12 /***
13 * constant for the item.
14 */
15 public static final String CURRENT_ITEM = "currentItem";
16
17 /***
18 * constant for the comments collapsing.
19 */
20 public static final String COLLAPSE_COMMENTS = "collapseComments";
21
22 /***
23 * constant for navigation to the home page
24 */
25 public static final String GO_HOME = "go_home";
26
27 /***
28 * constant for navigation to the jobs page.
29 */
30 public static final String GO_JOBS = "go_jobs";
31
32 /***
33 * constant for navigation to the jobs page.
34 */
35 public static final String GO_ITEMS = "go_items";
36 /***
37 * constant for navigation to the jobs page.
38 */
39 public static final String GO_JOB_DETAILS = "go_jobdetails";
40
41 /***
42 * constant for navigation to the error page.
43 */
44 public static final String GO_ERROR = "go_error";
45
46 /***
47 * constant for the control flow error.
48 */
49 public static final String ERROR_CONTROL_FLOW = "error_control_flow";
50
51 }
52 /***
53 * $Log: JSFConstants.java,v $
54 * Revision 1.6 2005/09/05 09:20:07 schauwvliege
55 * Removed CurrentJobOffer is now CurrentItem
56 *
57 * Revision 1.5 2005/08/30 13:07:46 psong09
58 * renamed author: psong09
59 *
60 * Revision 1.4 2005/08/29 12:44:59 psong09
61 * moved spinner actionListener to ItemAction
62 *
63 * Revision 1.3 2005/08/24 16:30:00 schauwvliege
64 * introduction of mixed list of all items
65 *
66 * Revision 1.2 2005/08/22 13:38:34 psong09
67 * Added error page for synchronisation error
68 *
69 * Revision 1.1 2005/08/19 13:03:28 psong09
70 * added navigation constants
71 *
72 * Revision 1.4 2005/08/18 07:37:13 schauwvliege
73 * Collapse comments
74 *
75 * Revision 1.3 2005/08/17 14:19:10 psong09
76 * Added variable
77 *
78 * Revision 1.2 2005/08/05 08:27:50 bme_jcs
79 * resolved checkstyle errors
80 *
81 * Revision 1.1 2005/08/04 14:28:40 psong09
82 * Added constants interface
83 *
84 * */