standardattributes.java

来自「一个实用工具类」· Java 代码 · 共 59 行

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