Examples of SoftHashMap


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

Examples of org.jasig.portal.utils.SoftHashMap

    private IPersonAttributeDao pa;
    private SoftHashMap cache;

    public PersonDirPropertyFinder() {
        pa = PersonDirectory.getPersonAttributeDao();
        cache = new SoftHashMap(120);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.