| com.sun.jbi.framework.jse.JSEJBIFrameworkMBean
All known Subclasses: com.sun.jbi.framework.jse.JSEJBIFramework,
JSEJBIFrameworkMBean | public interface JSEJBIFrameworkMBean (Code) | | Management interface for Java SE JBI framework.
author: Sun Microsystems, Inc. |
Method Summary | |
boolean | isLoaded() Queries the state of the JBI Framework. | void | load() Load the JBI framework with the specified environment. | void | unload() Unloads the JBI framework. |
isLoaded | boolean isLoaded()(Code) | | Queries the state of the JBI Framework.
true if the JBI framework is loaded, false otherwise. |
load | void load() throws Exception(Code) | | Load the JBI framework with the specified environment. When this method
retuns, all public interfaces and system services have completely
initialized. If a connector port is specified in the environment
properties, a remote JMX connector server is created.
throws: Exception - failed to load JBI framework |
unload | void unload() throws Exception(Code) | | Unloads the JBI framework. When this method retuns, all
public interfaces, system services, and JMX connector (if configured)
have been destroyed.
throws: javax.jbi.JBIException - failed to unload JBI framework |
|
|