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

org.infinispan.manager.CacheContainer Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.manager;

import org.infinispan.Cache;
import org.infinispan.commons.api.BasicCache;
import org.infinispan.commons.api.BasicCacheContainer;

public interface CacheContainer extends BasicCacheContainer {
   /**
    * This method overrides the underlying {@link CacheContainer#getCache()},
    * to return a {@link Cache} instead of a {@link BasicCache}
    */
   @Override
    Cache getCache();

   /**
    * This method overrides the underlying {@link CacheContainer#getCache(String)},
    * to return a {@link Cache} instead of a {@link BasicCache}
    */
   @Override
    Cache getCache(String cacheName);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy