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