Java MBean setQueryExpServer(QueryExp query, MBeanServer toSet)

Here you can find the source of setQueryExpServer(QueryExp query, MBeanServer toSet)

Description

Set the mbean server on the QueryExp and try and pass back any previously set one

License

Open Source License

Declaration

private static MBeanServer setQueryExpServer(QueryExp query, MBeanServer toSet) 

Method Source Code

//package com.java2s;
/*//from ww w. jav  a 2  s  .c o  m
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

import javax.management.MBeanServer;

import javax.management.QueryEval;
import javax.management.QueryExp;

public class Main {
    /**  Set the mbean server on the QueryExp and try and pass back any previously set one */
    private static MBeanServer setQueryExpServer(QueryExp query, MBeanServer toSet) {
        // We assume the QueryExp is a QueryEval subclass or uses the QueryEval thread local
        // mechanism to store any existing MBeanServer. If that's not the case we have no
        // way to access the old mbeanserver to let us restore it
        MBeanServer result = QueryEval.getMBeanServer();
        query.setMBeanServer(toSet);
        return result;
    }
}

Related

  1. registerMBean(MBeanServer mbs, Object object, ObjectName name, boolean unreg)
  2. registerMBean(MBeanServer server, String agentName, Map attrs, Object mbeanObject)
  3. registerMBean(Object bean, MBeanServer mBeanServer, ObjectName objectName)
  4. removeTimerNotification(ObjectName timer, Integer id, MBeanServer server)
  5. resolveServerClassLoader(Map env, MBeanServer mbs)
  6. toString(MBeanParameterInfo[] pinfo)
  7. unregisterMBean(MBeanServer mbs, ObjectName name)