1 17 package org.apache.excalibur.store; 18 19 import java.util.Iterator ; 20 21 import org.apache.avalon.framework.component.Component; 22 23 29 public interface StoreJanitor 30 extends Component 31 { 32 33 String ROLE = StoreJanitor.class.getName(); 34 35 36 void register(Store store); 37 38 39 void unregister(Store store); 40 41 42 Iterator iterator(); 43 } 44 | Popular Tags |