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

changeset 45
cc7f082c5ef3
parent 34
824d4042c857
child 47
57cfb94ab99f
     1.1 --- a/src/main/java/de/uapcore/lightpit/Constants.java	Wed May 13 18:55:05 2020 +0200
     1.2 +++ b/src/main/java/de/uapcore/lightpit/Constants.java	Wed May 13 21:10:23 2020 +0200
     1.3 @@ -38,8 +38,6 @@
     1.4  public final class Constants {
     1.5      public static final String JSP_PATH_PREFIX = "/WEB-INF/jsp/";
     1.6  
     1.7 -    public static final String JSPF_PATH_PREFIX = "/WEB-INF/jspf/";
     1.8 -
     1.9      public static final String DYN_FRAGMENT_PATH_PREFIX = "/WEB-INF/dynamic_fragments/";
    1.10  
    1.11  
    1.12 @@ -64,11 +62,6 @@
    1.13      public static final String CTX_ATTR_DB_DIALECT = "db-dialect";
    1.14  
    1.15      /**
    1.16 -     * Key for the request attribute containing the class name of the currently dispatching module.
    1.17 -     */
    1.18 -    public static final String REQ_ATTR_MODULE_CLASSNAME = fqn(AbstractLightPITServlet.class, "moduleClassname");
    1.19 -
    1.20 -    /**
    1.21       * Key for the request attribute containing the {@link LightPITModule} information of the currently dispatching module.
    1.22       */
    1.23      public static final String REQ_ATTR_MODULE_INFO = fqn(AbstractLightPITServlet.class, "moduleInfo");
    1.24 @@ -79,6 +72,11 @@
    1.25      public static final String REQ_ATTR_MENU = fqn(AbstractLightPITServlet.class, "mainMenu");
    1.26  
    1.27      /**
    1.28 +     * Key for the request attribute containing the sub menu list.
    1.29 +     */
    1.30 +    public static final String REQ_ATTR_SUB_MENU = fqn(AbstractLightPITServlet.class, "subMenu");
    1.31 +
    1.32 +    /**
    1.33       * Key for the request attribute containing the full path information (servlet path + path info).
    1.34       */
    1.35      public static final String REQ_ATTR_PATH = fqn(AbstractLightPITServlet.class, "path");

mercurial