Constants.java
01 /*
02  *
03  * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04  *
05 */
06 package demo.tasklist.common;
07 
08 /**
09  * The constants in this interface are keys used to set attributes in and get attributes
10  * from the HttpSession object.
11  */
12 public interface Constants {
13   public static final String SUCCESS_KEY = "Success";
14   public static final String FAILURE_KEY = "Failure";
15   public static final String DATA_KEY = "datakeeper";
16   public static final String ERROR_KEY = "errorkeeper";
17 }