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

📄 basepermission.java

📁 acegi构造安全的java系统
💻 JAVA
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.acegisecurity.acls.domain;import org.acegisecurity.acls.AclFormattingUtils;import org.acegisecurity.acls.Permission;import org.springframework.util.Assert;import java.lang.reflect.Field;import java.util.HashMap;import java.util.List;import java.util.Map;import java.util.Vector;/** * A set of standard permissions. * * @author Ben Alex * @version $Id: BasePermission.java 1868 2007-05-25 02:28:40Z benalex $ */public final class BasePermission implements Permission {    //~ Static fields/initializers =====================================================================================    public static final Permission READ = new BasePermission(1 << 0, 'R'); // 1    public static final Permission WRITE = new BasePermission(1 << 1, 'W'); // 2    public static final Permission CREATE = new BasePermission(1 << 2, 'C'); // 4    public static final Permission DELETE = new BasePermission(1 << 3, 'D'); // 8    public static final Permission ADMINISTRATION = new BasePermission(1 << 4, 'A'); // 16    private static Map locallyDeclaredPermissionsByInteger = new HashMap();    private static Map locallyDeclaredPermissionsByName = new HashMap();    static {        Field[] fields = BasePermission.class.getDeclaredFields();        for (int i = 0; i < fields.length; i++) {            try {                Object fieldValue = fields[i].get(null);                if (BasePermission.class.isAssignableFrom(fieldValue.getClass())) {                    // Found a BasePermission static field                    BasePermission perm = (BasePermission) fieldValue;                    locallyDeclaredPermissionsByInteger.put(new Integer(perm.getMask()), perm);                    locallyDeclaredPermissionsByName.put(fields[i].getName(), perm);                }            } catch (Exception ignore) {}        }    }    //~ Instance fields ================================================================================================    private char code;    private int mask;    //~ Constructors ===================================================================================================    private BasePermission(int mask, char code) {        this.mask = mask;        this.code = code;    }    //~ Methods ========================================================================================================    /**     * Dynamically creates a <code>CumulativePermission</code> or <code>BasePermission</code> representing the     * active bits in the passed mask.     *     * @param mask to build     *     * @return a Permission representing the requested object     */    public static Permission buildFromMask(int mask) {        if (locallyDeclaredPermissionsByInteger.containsKey(new Integer(mask))) {            // The requested mask has an exactly match against a statically-defined BasePermission, so return it            return (Permission) locallyDeclaredPermissionsByInteger.get(new Integer(mask));        }        // To get this far, we have to use a CumulativePermission        CumulativePermission permission = new CumulativePermission();        for (int i = 0; i < 32; i++) {            int permissionToCheck = 1 << i;            if ((mask & permissionToCheck) == permissionToCheck) {                Permission p = (Permission) locallyDeclaredPermissionsByInteger.get(new Integer(permissionToCheck));                Assert.state(p != null,                    "Mask " + permissionToCheck + " does not have a corresponding static BasePermission");                permission.set(p);            }        }        return permission;    }    public static Permission[] buildFromMask(int[] masks) {        if ((masks == null) || (masks.length == 0)) {            return new Permission[] {};        }        List list = new Vector();        for (int i = 0; i < masks.length; i++) {            list.add(BasePermission.buildFromMask(masks[i]));        }        return (Permission[]) list.toArray(new Permission[] {});    }    public static Permission buildFromName(String name) {        Assert.isTrue(locallyDeclaredPermissionsByName.containsKey(name), "Unknown permission '" + name + "'");        return (Permission) locallyDeclaredPermissionsByName.get(name);    }    public static Permission[] buildFromName(String[] names) {        if ((names == null) || (names.length == 0)) {            return new Permission[] {};        }        List list = new Vector();        for (int i = 0; i < names.length; i++) {            list.add(BasePermission.buildFromName(names[i]));        }        return (Permission[]) list.toArray(new Permission[] {});    }    public boolean equals(Object arg0) {        if (!(arg0 instanceof BasePermission)) {            return false;        }        BasePermission rhs = (BasePermission) arg0;        return (this.mask == rhs.getMask());    }    public int getMask() {        return mask;    }    public String getPattern() {        return AclFormattingUtils.printBinary(mask, code);    }    public String toString() {        return "BasePermission[" + getPattern() + "=" + mask + "]";    }    	public int hashCode() {		return this.mask;	}}

⌨️ 快捷键说明

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