securityinitializerimpl.java

来自「This is a resource based on j2me embedde」· Java 代码 · 共 98 行

JAVA
98
字号
/* * * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. *  * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt). *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */package com.sun.midp.security;import java.util.Hashtable;import com.sun.midp.log.Logging;import com.sun.midp.log.LogChannels;/** * The class implements security initializer logic common for core * subsystems and for optional JSRs. Using this implmentation JSRs * can easily introduce own security initializers for redispatching * security tokens within JSR subsystem.  */public class SecurityInitializerImpl {    /** Internal security token */    SecurityToken internalSecurityToken;    /** List of trusted class names */    private Hashtable trustedClasses;    /**     * Check whether object is the instance of a trusted class, that means     * the object owner has the right to request for a security token.     * The optimized implementation for this method can be provided in     * VM specific way.     *     * @param object instance of the trusted class known to the initializer     * @return true if the object belongs to trusted class, false otherwise     */    boolean isTrusted(Object object) {        if (trustedClasses == null) {            return false;        }        return (trustedClasses.get(object.getClass().getName()) != null);    }    /**     * Request security token using trusted object instance.     * Note that the imposibility to create trusted objects     * for untrusted requesters is the only guarantee of     * secure tokens dispatching.      */    public SecurityToken requestToken(            ImplicitlyTrustedClass trusted) {        if (!isTrusted(trusted)) {            throw new SecurityException(                "Failed request for SecurityToken by " +                    trusted.getClass().getName());        }        // Grant internal security token to trusted requester        return internalSecurityToken;    }    /**     * Create instance of SecurityInitializerImpl with a given token and     * list of trusted class names     *     * @param token security token to hold     * @param trusted names of trusted classes     */    public SecurityInitializerImpl(SecurityToken token, String[] trusted) {        internalSecurityToken = token;        trustedClasses = new Hashtable(trusted.length);        for (int i = 0; i < trusted.length; i++) {            trustedClasses.put(trusted[i], trusted[i]);        }    }}

⌨️ 快捷键说明

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