1 package org.jboss.cache.eviction; 2 3 import org.jboss.cache.CacheImpl; 4 import org.jboss.cache.Fqn; 5 6 9 public class DummyEvictionPolicy extends BaseEvictionPolicy 10 { 11 public void evict(Fqn fqn) throws Exception  12 { 13 } 16 17 public int getWakeupIntervalSeconds() 18 { 19 return 0; } 21 22 public void configure(CacheImpl cache) 23 { 24 } 26 27 public EvictionAlgorithm getEvictionAlgorithm() 28 { 29 return null; 31 } 32 33 public Class getEvictionConfigurationClass() 34 { 35 return null; } 37 38 39 } 40 | Popular Tags |