Methods Summary |
---|
public void | cleanUp()Cleans up any resources allocated by the bootstrap implementation,
including deregistration of the extension MBean, if applicable.
This method will be called after the onInstall() or onUninstall() method
is called, whether it succeeds or fails.
|
public javax.management.ObjectName | getExtensionMBeanName()Get the JMX ObjectName for the optional installation configuration MBean
for this BC. If there is none, the value is null.
return null;
|
public void | init(javax.jbi.component.InstallationContext installContext)Called to initialize the BC bootstrap.
context = installContext;
|
public void | onInstall()Called at the beginning of installation of JavaEEServiceEngine Binding .
For this JavaEEServiceEngine, all the required installation tasks have
been taken care by the InstallationService.
|
public void | onUninstall()Called at the beginning of uninstallation of JavaEEServiceEngineBinding .
For this JavaEEServiceEngine, all the required uninstallation tasks
have been taken care of by the InstallationService
|