⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webkeys.java~

📁 J2EE & Tomcat books published by hope
💻 JAVA~
字号:
package org.impact.stars.util;/** * This interface contains all the keys that are used to * store data in the different scopes of web-tier. These * values are the same as those used in the JSP * pages (useBean tags). */public interface WebKeys {    public static final String ConceptModelKey = "concept";    public static final String ConceptstrModelKey = "conceptstr";    public static final String ConflictModelKey = "conflict";    public static final String StakeholderModelKey = "stakeholder";    public static final String PerspectiveModelKey = "perspective";    public static final String UserModelKey = "user";        public static final String ModelManagerKey = "mm";    public static final String AppModelManagerKey = "apmm";    public static final String ScreenManagerKey = "screenManager";    public static final String RequestProcessorKey = "rp";    public static final String ProfileMgrModelKey = "profilemgr";    public static final String WebControllerKey = "webController";    public static final String CurrentScreen = "currentScreen";    public static final String PreviousScreen = "previousScreen";    public static final String LanguageKey = "language";    public static final String URLMappingsKey = "urlMappings";    public static final String CustomerWebImplKey = "customer";    public static final String MissingFormDataKey = "missingFormData";    public static final String SigninTargetURL = "signinTargetURL";    public static final String ServerTypeKey = "serverType";    /**     * This request-scoped attribute uniquely determines the     * order associated with a user request.     */    public static final String RequestIdKey = "requestId";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -