Package org.jasig.portal.utils

Examples of org.jasig.portal.utils.SoftHashMap


     */
    // XXX is this thread safe?
    Map getChannelCache() {
        if(this.channelCache==null) {
            if((this.channelCache=(SoftHashMap)this.cacheTables.get(this.channel))==null) {
                this.channelCache=new SoftHashMap(1);
                this.cacheTables.put(this.channel,this.channelCache);
            }
        }
        return this.channelCache;
    }
View Full Code Here


    private IPersonAttributeDao pa;
    private SoftHashMap cache;

    public PersonDirPropertyFinder() {
        pa = PersonDirectory.getPersonAttributeDao();
        cache = new SoftHashMap(120);
    }
View Full Code Here

TOP

Related Classes of org.jasig.portal.utils.SoftHashMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.