KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2 @COPYRIGHT@
3 */

4 package demo.townsend.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 CUR_PRODUCT = "curProd";
15 }
16
Popular Tags