📄 webkeys.java
字号:
package apusic.myshop.util;//工具类,设置WEB应用中的引用名称,用于设置KEY-VALUE对public interface WebKeys { public static final String CartModelKey = "cart"; public static final String CustomerModelKey = "customer"; public static final String UserIdKey = "userId"; public static final String DoActionKey = "doaction"; // The key to get credit card information for a web user. public static final String CreditCardKey = "creditcard"; //The contact information corresponding to the billing address of the web user. public static final String BillingContactInfoKey = "billingContactInfo"; //The contact information corresponding to the shipping address of the web user. public static final String ShippingContactInfoKey = "shippingContactInfo"; //This attribute describes if the user needs to enter shipping address or not. public static final String ShippingAddressRequiredKey = "shippingAddressRequired"; public static final String CatalogModelKey = "catalog"; public static final String InventoryModelKey = "inventory"; /** * The preferred carrier for the web user. */ public static final String CarrierKey = "carrier"; /** * 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 + -