Package org.apache.stratum.jcs.auxiliary.disk.jisp.behavior

Examples of org.apache.stratum.jcs.auxiliary.disk.jisp.behavior.IJISPCacheAttributes



    /** Description of the Method */
    public ICache createCache( IAuxiliaryCacheAttributes iaca )
    {
        IJISPCacheAttributes idca = ( IJISPCacheAttributes ) iaca;
        JISPCacheManager dcm = JISPCacheManager.getInstance( idca );
        return dcm.getCache( idca );
    }
View Full Code Here


     *
     * @return The cache value
     */
    public ICache getCache( String cacheName )
    {
        IJISPCacheAttributes cattr = ( IJISPCacheAttributes ) defaultCattr.copy();
        cattr.setCacheName( cacheName );
        return getCache( cattr );
    }
View Full Code Here

TOP

Related Classes of org.apache.stratum.jcs.auxiliary.disk.jisp.behavior.IJISPCacheAttributes

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.