1 /* 2 * Created on May 18, 2005 3 * 4 * TODO To change the template for this generated file go to 5 * Window - Preferences - Java - Code Style - Code Templates 6 */ 7 package org.enhydra.dods.cache.hash; 8 9 import org.enhydra.dods.cache.base.DODSCache; 10 import org.enhydra.dods.cache.base.DODSCacheAbstractFactory; 11 12 /** 13 * @author Administrator 14 * 15 * TODO To change the template for this generated type comment go to 16 * Window - Preferences - Java - Code Style - Code Templates 17 */ 18 public class DODSLinkedHashCacheFactory implements DODSCacheAbstractFactory { 19 public DODSCache newDODSCache(int cacheSize) { 20 return new DODSLinkedHashCache(cacheSize); 21 } 22 } 23