KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > admin > controller > Constants


1 package com.quikj.application.communicator.admin.controller;
2
3
4 /**
5  * Manifest constants for the example application.
6  *
7  * @author Anish Shah
8  * @version $Revision: 1.1 $ $Date: 2003/04/27 19:19:21 $
9  */

10
11 public final class Constants {
12
13
14     /**
15      * The package name for this application.
16      */

17     public static final String JavaDoc Package = "org.quikj.ace";
18
19
20     /**
21      * The application scope attribute under which our Hashtable of
22      * Users is stored.
23      */

24     public static final String JavaDoc DATABASE_KEY = "database";
25
26
27     /**
28      * The session scope attribute under which the Subscription object
29      * currently selected by our logged-in User is stored.
30      */

31     public static final String JavaDoc SUBSCRIPTION_KEY = "subscription";
32
33
34     /**
35      * The session scope attribute under which the User object
36      * for the currently logged in user is stored.
37      */

38     public static final String JavaDoc USER_KEY = "user";
39
40
41 }
42
Popular Tags