View Javadoc

1   package org.bejug.javacareers.common.constants;
2   
3   /***
4    * Common constants to be used throughout the application.
5    * @author Bart Meyers (Last modified by $Author: shally $)
6    * @version $Revision: 1.4 $ ${Revision}$ - $Date: 2005/12/20 15:36:45 $
7    */
8   public class JavacareersConstants {
9   
10      /***
11       * TODO: move 'constants' to enums as shown below :
12       *
13       * public enum Type { JOBOFFER,
14                         COMMERCIAL_EDUCATION_OFFER,
15                         ACADEMIC_EDUCATION_OFFER,
16  	                   CONSULTING_SERVICE_OFFER,
17                         EDUCATION_SERVICE_OFFER,
18                         RESUME,
19                         PRESENTATION,
20                         INTERVIEW,
21                         TRAINING };
22      */
23  
24  	/***
25  	 * constant for a joboffer.
26  	 */
27  	public static final int JOBOFFER = 1;
28  	
29  	/***
30  	 * constant for a commercialeducationoffer.
31  	 */
32  	public static final int COMMERCIAL_EDUCATION_OFFER = 2;
33  	
34  	/***
35  	 * constant for an academiceducationoffer.
36  	 */
37  	public static final int ACADEMIC_EDUCATION_OFFER = 3;
38  	
39  	/***
40  	 * constant for a consultingserviceoffer.
41  	 */
42  	public static final int CONSULTING_SERVICE_OFFER = 4;
43  	
44  	/***                                                              
45  	 * constant for an educationserviceoffer
46  	 */
47  	public static final int EDUCATION_SERVICE_OFFER = 5;
48  	
49  	/***
50  	 * constant for a resume.
51  	 */
52  	public static final int RESUME = 6;
53  	
54  	/***
55  	 * constant for a presentation
56  	 */
57  	public static final int PRESENTATION = 7;
58  	
59  	/***
60  	 * constant for an interview
61  	 */
62  	public static final int INTERVIEW = 8;
63  	
64  	/***
65  	 * constant for a training
66  	 */
67  	public static final int TRAINING = 9;
68  
69  
70  }
71  /***
72   * $Log: JavacareersConstants.java,v $
73   * Revision 1.4  2005/12/20 15:36:45  shally
74   * CheckStyle and PMD changes.
75   *
76   * Revision 1.3  2005/10/11 07:48:47  stephan_janssen
77   * Added todo statement in regards to enums and changed interface to class type.
78   *
79   * Revision 1.2  2005/09/06 13:21:44  schauwvliege
80   * Intro if interview
81   *
82   * Revision 1.1  2005/08/26 07:58:27  ge0ffrey
83   * split up the sources in service, serviceimpl and webclient
84   *
85   * Revision 1.3  2005/08/25 09:03:07  bme_jcs
86   * added new types
87   *
88   * Revision 1.2  2005/08/24 12:32:11  psong09
89   * Added spinner component and renamed commentAction
90   *
91   * Revision 1.1  2005/08/23 09:32:03  bme_jcs
92   * introduction of ItemService-classes
93   *
94   */