Package org.apache.archiva.redback.components.cache.impl

Examples of org.apache.archiva.redback.components.cache.impl.NoCacheCache$NoStats


    public Cache getCache( String id, CacheHints hints )
        throws CacheException
    {
        if ( creator == null )
        {
            return new NoCacheCache();
        }

        if ( caches.containsKey( id ) )
        {
            return (Cache) caches.get( id );
View Full Code Here


        }
        else
        {
            log.info( "Cache with role-hint default doesn't exists, default will be no cache" );
            this.defaultCache = new NoCacheCache();
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.archiva.redback.components.cache.impl.NoCacheCache$NoStats

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.