globals.java

来自「开源项目CRM之OpenCustomer」· Java 代码 · 共 68 行

JAVA
68
字号
/*******************************************************************************
 * ***** BEGIN LICENSE BLOCK Version: MPL 1.1
 * 
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with the
 * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
 * 
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
 * the specific language governing rights and limitations under the License.
 * 
 * The Original Code is the OpenCustomer CRM.
 * 
 * The Initial Developer of the Original Code is Thomas Bader (Bader & Jene
 * Software-Ingenieurb黵o). Portions created by the Initial Developer are
 * Copyright (C) 2005 the Initial Developer. All Rights Reserved.
 * 
 * Contributor(s): Thomas Bader <thomas.bader@bader-jene.de>
 * 
 * ***** END LICENSE BLOCK *****
 */

package org.opencustomer.application.web;

/**
 * The global constants used for this webapplication.
 * 
 * @author Thomas Bader
 * @version 1.0
 */
public final class Globals
{
    /**
     * Private Constructor - instances are not necessary for this class.
     */
    private Globals()
    {

    }

    /**
     * Constant with the key of the active user.
     */
    public static final String USER_KEY = "org.opencustomer.application.USER";

    /**
     * Constant with the key of the active company. The active company may only
     * be differ from the company associated to the active user, if the users
     * company is null (This means, the active user is an administrative user).
     */
    public static final String COMPANY_KEY = "org.opencustomer.application.COMPANY";

    /**
     * Constant with the key of the active domain.
     */
    public static final String DOMAIN_KEY = "org.opencustomer.application.DOMAIN";

    /**
     * Constant with the key of the authenticator of the active user.
     */
    public static final String AUTHENTICATOR_KEY = "org.opencustomer.application.AUTHENTICATOR";

    public static final String MENU_KEY = "org.opencustomer.application.MENU";

    public static final String SESSION_MONITOR_KEY = "org.opencustomer.application.SESSION_MONITOR";

    public static final String SETTINGS_KEY = "org.opencustomer.application.SETTINGS";
}

⌨️ 快捷键说明

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