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

📄 standardattributes.java

📁 一个实用工具类
💻 JAVA
字号:
/* * Copyright (C) butor.com. All rights reserved. * * This software is published under the terms of the GNU Library General * Public License (GNU LGPL), a copy of which has been included with this * distribution in the LICENSE.txt file.  */package org.butor.web.helper;/** * Constains the standard attribute names of the framework. * These are meant to be placed in page, request, session or application scope. *  * @author 	mateusfi */public abstract class StandardAttributes {	/**	 * Holds the user locale	 */	public static final String LOCALE_KEY = "org.butor.web.helper.StandardAttributes.LOCALE_KEY";		/**	 * Holds the user profile structure	 */	public static final String USER_PROFILE = "org.butor.web.helper.USER_PROFILE";		/**	 * Holds the last action URL relative to current webapp	 */	public static final String CURRENT_URL = "org.butor.web.helper.CURRENT_URL";	/**	 * Holds the last action URL in absolute form	 */	public static final String CURRENT_ABSOLUTE_URL = "org.butor.web.helper.CURRENT_ABSOLUTE_URL";			/**	 * Holds the flag telling any action that the user must change his password.	 */		public static final String MUST_CHANGE_PASSWORD = "org.butor.web.helper.MUST_CHANGE_PASSWORD";	/**	 * Holds the home page URL to which the browser redirects after a logout.	 */		public static final String LOGOUT_URL = "org.butor.web.helper.LOGOUT_URL";	/**	 * Holds the home page URL to which the browser redirects when "home page" (or whatever its name) is selected.	 */		public static final String HOME_URL = "org.butor.web.helper.HOME_URL";		/**	 * Holds the current help key	 */	public static final String HELP_KEY = "org.butor.web.helper.HELP_KEY";	}

⌨️ 快捷键说明

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