src/main/kotlin/de/uapcore/lightpit/Constants.kt

changeset 374
34abadbdd0e3
parent 371
3795a72e2f16
child 375
cbbadb493f22
equal deleted inserted replaced
373:4ea722f9cb66 374:34abadbdd0e3
24 */ 24 */
25 25
26 package de.uapcore.lightpit 26 package de.uapcore.lightpit
27 27
28 object Constants { 28 object Constants {
29 /**
30 * A data in yyyy-mm-dd format to identify the release.
31 */
29 const val VERSION_DATE = "2025-05-18" 32 const val VERSION_DATE = "2025-05-18"
30 33
31 /** 34 /**
32 * The path where the JSP files reside. 35 * The path where the JSP files reside.
33 */ 36 */
50 53
51 /** 54 /**
52 * Name for the context parameter optionally specifying a database dialect. 55 * Name for the context parameter optionally specifying a database dialect.
53 */ 56 */
54 const val CTX_ATTR_DB_DIALECT = "db-dialect" 57 const val CTX_ATTR_DB_DIALECT = "db-dialect"
58
59 /**
60 * The name of the main JSP file the request has been forwarded to.
61 */
62 const val REQ_ATTR_JSP = "jspFile"
55 63
56 /** 64 /**
57 * Key for the request attribute containing the optional navigation menu. 65 * Key for the request attribute containing the optional navigation menu.
58 */ 66 */
59 const val REQ_ATTR_NAVIGATION = "navMenu" 67 const val REQ_ATTR_NAVIGATION = "navMenu"

mercurial