1 17 18 19 package org.apache.tomcat.util.modeler; 20 21 22 import java.util.List ; 23 24 39 public interface RegistryMBean { 40 41 56 public List loadMBeans( Object source, ClassLoader cl ) throws Exception ; 57 58 66 public void invoke( List mbeans, String operation, boolean failFirst ) 67 throws Exception ; 68 69 98 public void registerComponent(Object bean, String oname, String type) 99 throws Exception ; 100 101 108 public void unregisterComponent( String oname ); 109 110 111 119 public int getId( String domain, String name); 120 121 122 128 public void stop(); 129 130 138 public void loadMetadata(Object source ) throws Exception ; 139 } 140 | Popular Tags |