📄 constants.java
字号:
package com.relationinfo;
/**
* Constant values used throughout the application.
*
* <p>
* <a href="Constants.java.html"><i>www.relationinfo.com</i></a>
* </p>
*
* @author caoguangxin www.relationinfo.com
*/
public class Constants {
// ~ Static fields/initializers
// =============================================
/** The name of the ResourceBundle used in this application */
public static final String BUNDLE_KEY = "ApplicationResources";
/** The application scoped attribute for persistence engine used */
public static final String DAO_TYPE = "daoType";
public static final String DAO_TYPE_HIBERNATE = "hibernate";
/** Application scoped attribute for authentication url */
public static final String AUTH_URL = "authURL";
/** Application scoped attributes for SSL Switching */
public static final String HTTP_PORT = "httpPort";
public static final String HTTPS_PORT = "httpsPort";
/** The application scoped attribute for indicating a secure login */
public static final String SECURE_LOGIN = "secureLogin";
/** The encryption algorithm key to be used for passwords */
public static final String ENC_ALGORITHM = "algorithm";
/** A flag to indicate if passwords should be encrypted */
public static final String ENCRYPT_PASSWORD = "encryptPassword";
/** File separator from System properties */
public static final String FILE_SEP = System.getProperty("file.separator");
/** User home from System properties */
public static final String USER_HOME = System.getProperty("user.home")
+ FILE_SEP;
/**
* The session scope attribute under which the breadcrumb ArrayStack is
* stored
*/
public static final String BREADCRUMB = "breadcrumbs";
/**
* The session scope attribute under which the User object for the currently
* logged in user is stored.
*/
public static final String USER_KEY = "currentUserForm";
/**
* The request scope attribute under which an editable user form is stored
*/
public static final String USER_EDIT_KEY = "userForm";
/**
* The request scope attribute that holds the user list
*/
public static final String USER_LIST = "userList";
/**
* The request scope attribute for indicating a newly-registered user
*/
public static final String REGISTERED = "registered";
/**
* The name of the Administrator role, as specified in web.xml
*/
public static final String ADMIN_ROLE = "admin";
/**
* The name of the User role, as specified in web.xml
*/
public static final String USER_ROLE = "tomcat";
/**
* The name of the user's role list, a request-scoped attribute when
* adding/editing a user.
*/
public static final String USER_ROLES = "userRoles";
/**
* The name of the available roles list, a request-scoped attribute when
* adding/editing a user.
*/
public static final String AVAILABLE_ROLES = "availableRoles";
/**
* Name of cookie for "Remember Me" functionality.
*/
public static final String LOGIN_COOKIE = "sessionId";
/**
* The name of the configuration hashmap stored in application scope.
*/
public static final String CONFIG = "appConfig";
// Producttype-START
/**
* The request scope attribute that holds the producttype form.
*/
public static final String PRODUCTTYPE_KEY = "producttypeForm";
/**
* The request scope attribute that holds the producttype list
*/
public static final String PRODUCTTYPE_LIST = "producttypeList";
// Producttype-END
// Product-START
/**
* The request scope attribute that holds the product form.
*/
public static final String PRODUCT_KEY = "productForm";
/**
* The request scope attribute that holds the product list
*/
public static final String PRODUCT_LIST = "productList";
// Product-END
// Orders-START
/**
* The request scope attribute that holds the orders form.
*/
public static final String ORDERS_KEY = "ordersForm";
/**
* The request scope attribute that holds the orders list
*/
public static final String ORDERS_LIST = "ordersList";
// Orders-END
// Member-START
/**
* The request scope attribute that holds the member form.
*/
public static final String MEMBER_KEY = "memberForm";
/**
* The request scope attribute that holds the member list
*/
public static final String MEMBER_LIST = "memberList";
// Member-END
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -