1 25 26 package org.objectweb.perseus.cache.api; 27 28 import java.util.Collection ; 29 30 39 public interface UnbindManager { 40 41 49 boolean unbind(Object oid, boolean force) throws CacheException; 50 51 61 Collection unbindAll(Collection oids, boolean force) throws CacheException; 62 63 70 Collection unbindUnfixed(boolean force) throws CacheException; 71 } 72 | Popular Tags |