| java.lang.Object com.sun.jbi.framework.BindingBootstrap
All known Subclasses: com.sun.jbi.framework.BindingBootstrapUpgrade,
BindingBootstrap | public class BindingBootstrap implements javax.jbi.component.Bootstrap(Code) | | This is an implementation of the bootstrap class for a Binding Component
that is purely for unit testing. It does nothing but log messages when
its methods are called.
author: Sun Microsystems, Inc. |
Method Summary | |
public void | cleanUp() Cleans up any resources allocated by the bootstrap implementation,
including deregistration of the extension MBean, if applicable. | public ObjectName | getExtensionMBeanName() Return the optional installation configuration MBean ObjectName. | public void | init(InstallationContext installContext) Initialize for installation. | public void | onInstall() Install the Binding Component into the JBI framework. | public void | onUninstall() Uninstall a Binding Component from the JBI framework. |
cleanUp | public void cleanUp() throws javax.jbi.JBIException(Code) | | 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.
throws: javax.jbi.JBIException - when cleanup processing fails to completesuccessfully. |
getExtensionMBeanName | public ObjectName getExtensionMBeanName()(Code) | | Return the optional installation configuration MBean ObjectName.
The MBean ObjectName for this MBean. |
|
|