1 5 package com.opensymphony.oscache.base.algorithm; 6 7 8 16 public final class UnlimitedCache extends AbstractConcurrentReadCache { 17 21 public UnlimitedCache() { 22 super(); 23 maxEntries = UNLIMITED; 24 } 25 26 31 public void setMaxEntries(int maxEntries) { 32 } 33 34 38 protected void itemRetrieved(Object key) { 39 } 40 41 45 protected void itemPut(Object key) { 46 } 47 48 52 protected Object removeItem() { 53 return null; 54 } 55 56 60 protected void itemRemoved(Object key) { 61 } 62 } 63 | Popular Tags |