1 /* <cvs:id>
2 * $Id: SessionKeys.java,v 1.5 2005/01/20 16:48:48 clq2 Exp $
3 * </cvs:id>
4 * Created on Mar 26, 2004 by jdt
5 *
6 * Copyright (C) AstroGrid. All rights reserved.
7 *
8 * This software is published under the terms of the AstroGrid Software License
9 * version 1.2, a copy of which has been included with this distribution in the
10 * LICENSE.txt file.
11 */
12 package org.astrogrid.portal.login.common;
13 /***
14 * Merely a constant holder for keys used to access the
15 * portal's session.
16 *
17 * @author jdt
18 */
19 public final class SessionKeys {
20
21 /***
22 * Parameter names to look for in the session object.
23 */
24 public static final String CREDENTIAL = "credential";
25 /***
26 * Parameter names to look for in the session object.
27 */
28 public static final String COMMUNITY_NAME = "community_name";
29 /***
30 * Parameter names to look for in the session object.
31 */
32 public static final String COMMUNITY_ACCOUNT = "community_account";
33 /***
34 * Parameter names to look for in the session object.
35 */
36 public static final String USER = "user";
37 /***
38 * Parameter names to look for in the session object.
39 */
40 public static final String IVORN = "ivorn";
41 /***
42 * Parameter names to look for in the session object.
43 */
44 public static final String MYSPACE_CACHE = "myspace-cache";
45 }
46
47
48 /*
49 * $Log: SessionKeys.java,v $
50 * Revision 1.5 2005/01/20 16:48:48 clq2
51 * por-jl-888
52 *
53 * Revision 1.4.64.1 2005/01/19 11:47:16 jl99
54 * Caching in place. Download shifted to properties box.
55 *
56 * Revision 1.4 2004/10/05 14:32:55 gps
57 * - myspace end point changes
58 *
59 * Revision 1.3 2004/03/29 23:19:51 gps
60 * - merged PCMN_GPS_bz283
61 *
62 * Revision 1.2.2.1 2004/03/29 22:47:01 gps
63 * - merged HEAD changes
64 *
65 * Revision 1.2 2004/03/26 18:08:39 jdt
66 * Merge from PLGN_JDT_bz#275
67 *
68 * Revision 1.1.2.1 2004/03/26 17:43:03 jdt
69 * Factored out the keys used to store the session into a separate
70 * class that everyone can access.
71 *
72 */