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

📄 constants.java

📁 本人课程设计时做的一个用struts框架实现的基于cmmi2的项目管理系统的原型。还有部分功能尚未实现
💻 JAVA
字号:
package com.cmmi2pms.common;



/**
 * Manifest constants for this application.
 *
 * @author Craig R. McClanahan
 * @author Ted Husted
 * @version $Revision: 1.1.1.1 $ $Date: 2002/08/15 15:50:55 $
 */

public final class Constants {


    /**
     * The package name for this application.
     */
    

    /**
     * The session scope attribute under which the Username
     * for the currently logged in user is stored.
     */
    public static final String USER_KEY = "CurrUser";
    
    public static final String PROJECT_KEY = "CurrProject";


    /**
     * The token that represents a nominal outcome
     * in an ActionForward.
     */
    public static final String SUCCESS = "success";


    /**
     * The token that represents the logon activity
     * in an ActionForward.
     */
    public static final String LOGON = "logon";


    /**
     * The token that represents the welcome activity
     * in an ActionForward.
     */
    public static final String WELCOME = "welcome";


    /**
     * The value to indicate debug logging.
     */
    public static final int DEBUG = 1;


    /**
     * The value to indicate normal logging.
     */
    public static final int NORMAL = 0;
    
    
  

}

⌨️ 快捷键说明

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