| java.lang.Object com.sun.jbi.framework.EngineBootstrap
EngineBootstrap | public class EngineBootstrap implements javax.jbi.component.Bootstrap(Code) | | This is an implementation of the bootstrap class for a Service Engine
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 an optional installation configuration MBean ObjectName. | public void | init(InstallationContext installContext) Initialize for installation. | public void | onInstall() Install the Service Engine into the JBI framework. | public void | onUninstall() Uninstall a Service Engine 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 an optional installation configuration MBean ObjectName.
The MBean ObjectName for the installation configuration MBean. |
|
|