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

📄 webkeys.java

📁 J2EE & Tomcat books published by hope
💻 JAVA
字号:
package com.sun.j2ee.workflow.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). * @author Jian (James) Cai */public interface WebKeys {    public static final String CatalogModelKey = "catalog";    public static final String AccountModelKey = "account";    public static final String ModelManagerKey = "mm";    public static final String ScreenManagerKey = "screenManager";    public static final String RequestProcessorKey = "rp";    public static final String ProfileMgrModelKey = "profilemgr";    public static final String InventoryModelKey = "inventory";    public static final String ShoppingCartModelKey = "cart";    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 UserBeanKey = "user";    public static final String MissingFormDataKey = "missingFormData";    public static final String SigninTargetURL = "signinTargetURL";    public static final String ServerTypeKey = "serverType";    /**     * The contact information corresponding to the shipping     *  address of the web user.     */    public static final String ShippingContactInfoKey =        "shippingContactInfo";    /**     * The contact information corresponding to the billing     * address of the web user.     */    public static final String BillingContactInfoKey = "billingContactInfo";    /**     * The preferred carrier for the web user.     */    public static final String CarrierKey = "carrier";    /**     * The key to get credit card information for a web user.     */    public static final String CreditCardKey = "creditcard";    /**     * This attribute describes if the user needs to enter     * shipping address or not.     */    public static final String ShippingAddressRequiredKey =        "shippingAddressRequired";    /**     * 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 + -