webkeys.java

来自「一个优秀的供应商管理系统」· Java 代码 · 共 42 行

JAVA
42
字号
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 + =
减小字号Ctrl + -
显示快捷键?