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

📄 abstractadapterauthenticationtoken.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.adapters;import org.acegisecurity.GrantedAuthority;import org.acegisecurity.providers.AbstractAuthenticationToken;/** * Convenience superclass for {@link AuthByAdapter} implementations. * * @author Ben Alex * @version $Id: AbstractAdapterAuthenticationToken.java 1496 2006-05-23 13:38:33Z benalex $ */public abstract class AbstractAdapterAuthenticationToken extends AbstractAuthenticationToken implements AuthByAdapter {    //~ Instance fields ================================================================================================    private int keyHash;    //~ Constructors ===================================================================================================    protected AbstractAdapterAuthenticationToken() {        super(null);    }/**     * The only way an <code>AbstractAdapterAuthentication</code> should be     * constructed.     *     * @param key the key that is hashed and made available via  {@link     *        #getKeyHash()}     * @param authorities the authorities granted to this principal     */    protected AbstractAdapterAuthenticationToken(String key, GrantedAuthority[] authorities) {        super(authorities);        this.keyHash = key.hashCode();    }    //~ Methods ========================================================================================================    public boolean equals(Object obj) {        if (obj instanceof AbstractAdapterAuthenticationToken) {            if (!super.equals(obj)) {                return false;            }            AbstractAdapterAuthenticationToken test = (AbstractAdapterAuthenticationToken) obj;            return (this.getKeyHash() == test.getKeyHash());        }        return false;    }    public int getKeyHash() {        return this.keyHash;    }    /**     * Always returns <code>true</code>.     *     * @return DOCUMENT ME!     */    public boolean isAuthenticated() {        return true;    }    /**     * Iterates the granted authorities and indicates whether or not the specified role is held.<p>Comparison     * is based on the <code>String</code> returned by {@link GrantedAuthority#getAuthority}.</p>     *     * @param role the role being searched for in this object's granted authorities list     *     * @return <code>true</code> if the granted authority is held, or <code>false</code> otherwise     */    public boolean isUserInRole(String role) {        GrantedAuthority[] authorities = super.getAuthorities();        for (int i = 0; i < authorities.length; i++) {            if (role.equals(authorities[i].getAuthority())) {                return true;            }        }        return false;    }    /**     * Setting is ignored. Always considered authenticated.     *     * @param ignored DOCUMENT ME!     */    public void setAuthenticated(boolean ignored) {        // ignored    }}

⌨️ 快捷键说明

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