1 17 package javax.jbi.component; 18 19 import javax.jbi.JBIException; 20 21 import javax.management.ObjectName ; 22 23 public interface Bootstrap 24 { 25 void init(InstallationContext installContext) 26 throws JBIException; 27 28 void cleanUp() throws JBIException; 29 30 ObjectName getExtensionMBeanName(); 31 32 void onInstall() 33 throws JBIException; 34 35 void onUninstall() 36 throws JBIException; 37 } 38 | Popular Tags |