1 50 package org.apache.avalon.excalibur.monitor; 51 52 import org.apache.avalon.framework.component.Component; 53 54 61 public interface Monitor 62 extends Component 63 { 64 String ROLE = Monitor.class.getName(); 65 66 70 void addResource( Resource resource ); 71 72 75 Resource getResource( String key ); 76 77 80 void removeResource( String key ); 81 82 85 void removeResource( Resource resource ); 86 } 87 | Popular Tags |