KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > demo > tasklist > common > Constants


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 JavaDoc SUCCESS_KEY = "Success";
12   public static final String JavaDoc FAILURE_KEY = "Failure";
13   public static final String JavaDoc DATA_KEY = "datakeeper";
14   public static final String JavaDoc ERROR_KEY = "errorkeeper";
15 }
16
Popular Tags