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

📄 right.java

📁 开源项目CRM之OpenCustomer
💻 JAVA
字号:
/*******************************************************************************
 * ***** 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.auth;

import java.util.Hashtable;

public enum Right {
    
    CRM_PERSONS_READ(1, "crm.persons.READ"),
    CRM_PERSONS_WRITE(2, "crm.persons.WRITE"),
    CRM_COMPANIES_READ(3, "crm.companies.READ"),
    CRM_COMPANIES_WRITE(4, "crm.companies.WRITE"),
    CRM_CONTACTS_READ(5, "crm.contacts.READ"),
    CRM_CONTACTS_WRITE(6, "crm.contacts.WRITE"),
    ADMINISTRATION_USERPROFILE_READ(7, "administration.userProfile.READ"),
    ADMINISTRATION_USERPROFILE_WRITE(8, "administration.userProfile.WRITE"),
    ADMINISTRATION_USERMANAGEMENT_READ(9, "administration.userManagement.READ"),
    ADMINISTRATION_USERMANAGEMENT_WRITE(10, "administration.userManagement.WRITE"),
    CALENDAR_COMMON_READ(11, "calendar.common.READ"),
    CALENDAR_COMMON_WRITE(12, "calendar.common.WRITE"),
    ADMINISTRATION_ROLE_READ(13, "administration.role.READ"),
    ADMINISTRATION_ROLE_WRITE(14, "administration.role.WRITE"),
    ADMINISTRATION_USERGROUP_READ(15, "administration.usergroup.READ"),
    ADMINISTRATION_USERGROUP_WRITE(16, "administration.usergroup.WRITE"),
    ADMINISTRATION_USERMANAGEMENT_SESSIONMONITOR(17, "administration.userManagement.SESSION_MONITOR");

    private static Hashtable<String, Right> rights;

    private String label;

    private int id;

    private Right(int id, String label)
    {
        this.label = label;
        this.id = id;

        if (Right.rights == null)
            Right.rights = new Hashtable<String, Right>();

        Right.rights.put(label, this);
    }

    public String getLabel()
    {
        return label;
    }

    public static Right parseRight(String label) throws IllegalArgumentException
    {
        Right right = rights.get(label);

        if (right == null)
            throw new IllegalArgumentException("found no valid right for label: '" + label + "'");

        return right;
    }
}

⌨️ 快捷键说明

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