Source code: com/clra/web/Constants.java
1 /*
2 * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3 * Distributed under the GPL license. See doc/COPYING.
4 * $RCSfile: Constants.java,v $
5 * $Date: 2003/02/26 03:38:46 $
6 * $Revision: 1.4 $
7 */
8
9 package com.clra.web;
10
11 /**
12 * Manifest constants for the CLRA application.
13 *
14 * @version $Revision: 1.4 $ $Date: 2003/02/26 03:38:46 $
15 */
16 public final class Constants {
17
18 /**
19 * The session scope attribute under which the Authentication object
20 * for the currently logged in user is stored.
21 */
22 public static final String AUTHENTICATION_KEY = "authentication";
23
24 /** The scope scope attribute under which the rowing session id is stored */
25 public static final String ROWINGSESSION_KEY = "rowingId";
26
27 /** The scope scope attribute under which the participant id is stored */
28 public static final String PARTICIPANT_KEY = "participantId";
29
30 /**
31 * The session scope attribute under which the MemberView object
32 * for the currently logged in user is stored.
33 */
34 public static final String USER_KEY = "member";
35
36 } //
37
38 /*
39 * $Log: Constants.java,v $
40 * Revision 1.4 2003/02/26 03:38:46 rphall
41 * Added copyright and GPL license
42 *
43 * Revision 1.3 2003/02/19 22:30:32 rphall
44 * Removed gratuitous use of CLRA acronym
45 *
46 * Revision 1.2 2002/02/18 18:05:44 rphall
47 * Ran dos2unix to remove ^M (carriage return) from end of lines
48 */
49