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