src/java/de/uapcore/lightpit/Constants.java

changeset 10
89e3e6e28b69
parent 7
598670d5b0b8
child 11
737ab27e37b3
equal deleted inserted replaced
9:20a9b2bc9063 10:89e3e6e28b69
26 * POSSIBILITY OF SUCH DAMAGE. 26 * POSSIBILITY OF SUCH DAMAGE.
27 * 27 *
28 */ 28 */
29 package de.uapcore.lightpit; 29 package de.uapcore.lightpit;
30 30
31 import static de.uapcore.lightpit.Functions.fullyQualifiedName;
32
31 /** 33 /**
32 * Contains all constants used by the this application. 34 * Contains all constants used by the this application.
33 */ 35 */
34 public abstract class Constants { 36 public final class Constants {
35 public static final String HOME_NODE = "/home/"; 37 public static final String JSP_PATH_PREFIX = "/WEB-INF/view/";
36 38
37 public static final String JSP_PATH_PREFIX = "/WEB-INF/view/"; 39 public static final String REQ_ATTR_MENU = fullyQualifiedName(AbstractLightPITServlet.class, "mainMenu");
40 public static final String REQ_ATTR_PATH = fullyQualifiedName(AbstractLightPITServlet.class, "path");
41
42 /**
43 * This class is not instantiatable.
44 */
45 private Constants() {}
38 } 46 }

mercurial