All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.acegisecurity.adapters.AbstractAdapterAuthenticationToken Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/* Copyright 2004 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,v 1.6 2006/02/08 01:24:36 luke_t Exp $
 */
public abstract class AbstractAdapterAuthenticationToken
    extends AbstractAuthenticationToken implements AuthByAdapter {
    //~ Instance fields ========================================================

    private int keyHash;

    //~ Constructors ===========================================================

    protected AbstractAdapterAuthenticationToken() {
        super(null);
    }

    /**
     * The only way an AbstractAdapterAuthentication 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 ================================================================

    /**
     * Setting is ignored. Always considered authenticated.
     *
     * @param ignored DOCUMENT ME!
     */
    public void setAuthenticated(boolean ignored) {
        // ignored
    }

    /**
     * Always returns true.
     *
     * @return DOCUMENT ME!
     */
    public boolean isAuthenticated() {
        return true;
    }

    public int getKeyHash() {
        return this.keyHash;
    }

    /**
     * Iterates the granted authorities and indicates whether or not the
     * specified role is held.
     * 
     * 

* Comparison is based on the String returned by {@link * GrantedAuthority#getAuthority}. *

* * @param role the role being searched for in this object's granted * authorities list * * @return true if the granted authority is held, or * false 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; } 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy