pageconsts.java

来自「这是一个学校老师和学生的管理系统,程序比较简单,但是几乎所有功能都可以实现,如果」· Java 代码 · 共 145 行

JAVA
145
字号
/**
 *******************************************************************************
 * PageConsts.java
 *
 * (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
 *
 *<Program Content>
 *  System Name : Students Management System
 *<Summarize>
 *  The file includes a class and the class includes consts.
 *<Update Record>
 *  2009-4-28    1.00    zhangliy
 *******************************************************************************
 */
package com.hp.eds.zhangliyuan.stuMan.consts;

/**
 * The class includes consts.
 * 
 * @author zhangliy
 * @version 1.0
 */
public final class PageConsts {

	/**
	 * login success page
	 */
	public static String LOGIN_SUCCESS_PAGE = "loginSuccess";

	/**
	 * login fail page
	 */
	public static String LOGIN_FAILURE_PAGE = "loginFail";

	/**
	 * when login success,set session's attribute userInfo
	 */
	public static String LOGIN_SUCCESS_SESSION_MASSAGE = "userInfo";

	/**
	 * when login fail,set request attribute error
	 */
	public static String LOGIN_FAIL_REQUEST = "error";

	/**
	 * the user ID or the password is wrong
	 */
	public static String LOGIN_FAIL_MESSAGE = "notexist";

	/**
	 * log out the stuMenu page
	 */
	public static String LOGOUT = "logout";

	/**
	 * the update information page
	 */
	public static String STUMENU_UPDATEINFO = "updateInfo";

	/**
	 * the query score page
	 */
	public static String STUMENU_SCORE = "score";

	/**
	 * the register course page
	 */
	public static String STUMENU_REGISTERCOU = "registerCour";

	/**
	 * update success page
	 */
	public static String UPDATE_SUCCESS_PAGE = "updateSucPage";

	/**
	 * update fail page
	 */
	public static String UPDATE_FAIL_PAGE = "updateFailPage";

	/**
	 * after updating, set request attribuet
	 */
	public static String UPDATE_REQUEST = "update";

	/**
	 * pdate scccess messge
	 */
	public static String UPDATE_SUCCESS_MESSAGE = "updateSus";

	/**
	 * update fail message
	 */
	public static String UPDATE_FAIL_MESSAGE = "updateFail";

	/**
	 * the course list
	 */
	public static String COURSE_LIST = "courseList";

	/**
	 * register course success page
	 */
	public static String COURSE_SUCCESS_PAGE = "registerSus";

	/**
	 * when register course,set the request
	 */
	public static String COURSE_EQUEST = "register";

	/**
	 * register success message
	 */
	public static String COURSE_SUCCESS_MESSAGE = "registSus";

	/**
	 * register fail message
	 */
	public static String COURSE_FAIL_MESSAGE = "registFail";
	
	/**
	 * there is no course to select
	 */
	public static String COURSE_NULL_MESSAGE="nocourse";
	
	/**
	 * score list
	 */
	public static String SCORE_LIST="scoreList";
	
	/**
	 * when query score,set the request
	 */
	public static String SCORE_REQEUST="score";
	/**
	 * there is no score to query
	 */
	public static String SCORE_NULL_MESSATE="noscore";

	/**
	 * back to the stuMenu page
	 */
	public static String BACK_STUMENU = "back";

}

⌨️ 快捷键说明

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