1 package org.objectweb.celtix.management; 2 3 import java.util.List ; 4 5 import javax.management.MBeanServer ; 6 7 11 public interface InstrumentationManager { 12 13 16 void register(Instrumentation instrumentation); 17 18 21 void unregister(Object component); 22 23 27 List <Instrumentation> getAllInstrumentation(); 28 29 32 void shutdown(); 33 34 40 MBeanServer getMBeanServer(); 41 42 } 43 | Popular Tags |