nameconstants.java

来自「Java的框架」· Java 代码 · 共 85 行

JAVA
85
字号
package mcaps.core.docman.util;

/**
 * This class contains a collection of constants used in the
 * document management module.
 *
 * @author Chan Chin Wei
 * @date Apr 7, 2006
 * @version 1.0.1.0
 */
public class NameConstants {
	
	/**
	 * The name of the root folder. 
	 */
	public static final String ROOT_FOLDER_NAME = "docMan";

	/**
	 * The request scope attribute that holds the folder object. 
	 */
	public static final String FOLDER = "docManFolder";

	/**
	 * The request scope attribute that holds the folder object 
	 * that discribe the whole folder structure. 
	 */
	public static final String FOLDERSTRUCT = "docManFolderStruct";

	/**
	 * The request scope attribute that holds the folder and file list. 
	 */
	public static final String FOLDERFILE_LIST = "docManFolderFileList";

	/**
	 * The request scope attribute that holds the file object. 
	 */
	public static final String FILE = "docManFile";

	/**
	 * The request scope attribute that holds the list of file object. 
	 */
	public static final String FILES = "docManFiles";

	/**
	 * The name of the doc publication servlet. 
	 */
	public static final String DOC_PUB = "docPub";

	/**
	 * The name of the doc publication admin servlet. 
	 */
	public static final String DOC_ADMIN = "docAdmin";

	/**
	 * The name of the doc pub main page path. 
	 */
	public static final String DOC_MAIN_PAGE_PATH = "docMainPagePath";

	/**
	 * The name of the doc search result. 
	 */
	public static final String DOC_SEARCH_RESULT = "docSearchResult";

	/**
	 * The name of the doc search for published file parameter. 
	 */
	public static final String DOC_SEARCH_PUB = "searchPub";

	/**
	 * The name of the doc search prefix url. 
	 */
	public static final String DOC_SEARCH_URL_PREFIX = "searchUrlPrefix";

	/**
	 * The name of the doc search page size. 
	 */
	public static final String DOC_SEARCH_PAGESIZE = "pageSize";

	/**
	 * The name of the doc search page index. 
	 */
	public static final String DOC_SEARCH_PAGEINDEX = "pageIndex";

}

⌨️ 快捷键说明

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