1 16 17 18 package org.apache.commons.modeler; 19 20 21 import java.util.List ; 22 23 38 public interface RegistryMBean { 39 40 55 public List loadMBeans( Object source, ClassLoader cl ) throws Exception ; 56 57 65 public void invoke( List mbeans, String operation, boolean failFirst ) 66 throws Exception ; 67 68 97 public void registerComponent(Object bean, String oname, String type) 98 throws Exception ; 99 100 107 public void unregisterComponent( String oname ); 108 109 110 118 public int getId( String domain, String name); 119 120 121 127 public void stop(); 128 129 137 public void loadMetadata(Object source ) throws Exception ; 138 } 139 | Popular Tags |