01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.tasklist.common;
09
10 /**
11 * The constants in this interface are keys used to set attributes in and get
12 * attributes from the HttpSession object.
13 *
14 *@author Terracotta, Inc.
15 */
16 public interface Constants {
17 /**
18 * Description of the Field
19 */
20 public static final String SUCCESS_KEY = "Success";
21 /**
22 * Description of the Field
23 */
24 public static final String FAILURE_KEY = "Failure";
25 /**
26 * Description of the Field
27 */
28 public static final String DATA_KEY = "datakeeper";
29 /**
30 * Description of the Field
31 */
32 public static final String ERROR_KEY = "errorkeeper";
33 }
|