Java MBean findMBeanServer(String agentId)

Here you can find the source of findMBeanServer(String agentId)

Description

Return a list of registered MBeanServers.

License

Open Source License

Parameter

Parameter Description
agentId the agentId of the MBeanServer to find.

Declaration

public static ArrayList<MBeanServer> findMBeanServer(String agentId) 

Method Source Code

//package com.java2s;
/*/*from ww w. ja  v a2s  .  co  m*/
 * ################################################################
 *
 * ProActive Parallel Suite(TM): The Java(TM) library for
 *    Parallel, Distributed, Multi-Core Computing for
 *    Enterprise Grids & Clouds
 *
 * Copyright (C) 1997-2015 INRIA/University of
 *                 Nice-Sophia Antipolis/ActiveEon
 * Contact: proactive@ow2.org or contact@activeeon.com
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation; version 3 of
 * the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * If needed, contact us to obtain a release under GPL Version 2 or 3
 * or a different license than the AGPL.
 *
 *  Initial developer(s):               The ProActive Team
 *                        http://proactive.inria.fr/team_members.htm
 *  Contributor(s):
 *
 * ################################################################
 * $$PROACTIVE_INITIAL_DEV$$
 */

import java.util.ArrayList;
import javax.management.MBeanServer;
import javax.management.MBeanServerFactory;

public class Main {
    /**
     * Return a list of registered MBeanServers. 
     *
     * @param agentId the agentId of the MBeanServer to find.
     */
    public static ArrayList<MBeanServer> findMBeanServer(String agentId) {
        return MBeanServerFactory.findMBeanServer(agentId);
    }
}

Related

  1. dumpConstructors(MBeanConstructorInfo[] constructors)
  2. dumpOperations(MBeanOperationInfo[] operations)
  3. findAttribute(MBeanAttributeInfo[] attributes, String name)
  4. findFirstMBeanServer()
  5. findMBean(MBeanServer mbs, ObjectName queryName)
  6. findMBeanServerForAgentId(String agentId)
  7. getAttribute(MBeanInfo info, String attrName)
  8. getAttribute(MBeanServer mbeanServer, ObjectName objectName, String attributeName)
  9. getAttribute(MBeanServerConnection connection, ObjectName objectName, String attribute)