01: /*
02: @COPYRIGHT@
03: */
04: package demo.tasklist.common;
05:
06: /**
07: * The constants in this interface are keys used to set attributes in and get attributes
08: * from the HttpSession object.
09: */
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: }
|