com.bea.wlevs.management.boot
Interface BootMBean
- public interface BootMBean
- extends WebLogicMBean
This is the root MBean in the Weblogic Event Server hierarchy.
The following code is an example of accessing this MBean from the MBean server
//construct the ObjectName of the BootMBean
ObjectName rootBeanName = ObjectName.getInstance("com.bea.wlevs:Name=BootDomain,Type=Boot");
BootMBean rootBean = (BootMBean)
MBeanServerInvocationHandler.newProxyInstance(
mbsc,
rootBeanName,
BootMBean.class,false
);
//get the domain name of the Weblogic Event Server
String domainName = rootBean.getDomainName();
The domain name of the Weblogic Event Server is required to access other MBeans in the hierarchy
NAME
public static final String NAME
getDomainName
public String getDomainName()
- Returns the domain name
- Returns:
- - String - domain name