1 7 package org.jboss.cache.eviction; 8 9 17 public class MRUPolicy extends BaseEvictionPolicy implements EvictionPolicy 18 { 19 private MRUAlgorithm algorithm; 20 21 22 public MRUPolicy() 23 { 24 super(); 25 algorithm = new MRUAlgorithm(); 26 } 27 28 public EvictionAlgorithm getEvictionAlgorithm() 29 { 30 return algorithm; 31 } 32 33 public Class getEvictionConfigurationClass() 34 { 35 return MRUConfiguration.class; 36 } 37 } 38 | Popular Tags |