1 /* 2 @COPYRIGHT@ 3 */ 4 package demo.tasklist.common; 5 6 /** 7 * The constants in this interface are keys used to set attributes in and get attributes 8 * from the HttpSession object. 9 */ 10 public interface Constants { 11 public static final String SUCCESS_KEY = "Success"; 12 public static final String FAILURE_KEY = "Failure"; 13 public static final String DATA_KEY = "datakeeper"; 14 public static final String ERROR_KEY = "errorkeeper"; 15 } 16