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


Field Summary
static String NAME
           
 
Method Summary
 String getDomainName()
          Returns the domain name
 
Methods inherited from interface com.bea.wlevs.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getType, isRegistered
 

Field Detail

NAME

public static final String NAME
Method Detail

getDomainName

public String getDomainName()
Returns the domain name

Returns:
- String - domain name