Java MBean unregisterMBean(MBeanServer mbs, ObjectName name)

Here you can find the source of unregisterMBean(MBeanServer mbs, ObjectName name)

Description

unregister M Bean

License

Apache License

Declaration

public static String unregisterMBean(MBeanServer mbs, ObjectName name) 

Method Source Code

//package com.java2s;
/*/*from  w ww . ja v  a 2  s . c  o  m*/
 * Copyright 2017 Andrey Timofeev.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.management.InstanceNotFoundException;

import javax.management.MBeanRegistrationException;
import javax.management.MBeanServer;

import javax.management.ObjectName;

public class Main {
    public static String unregisterMBean(MBeanServer mbs, ObjectName name) {
        if (name == null) {
            return null;
        }
        try {
            mbs.unregisterMBean(name);
            return null;
        } catch (InstanceNotFoundException | MBeanRegistrationException ex) {
            return ex.getMessage();
        }
    }
}

Related

  1. registerMBean(Object bean, MBeanServer mBeanServer, ObjectName objectName)
  2. removeTimerNotification(ObjectName timer, Integer id, MBeanServer server)
  3. resolveServerClassLoader(Map env, MBeanServer mbs)
  4. setQueryExpServer(QueryExp query, MBeanServer toSet)
  5. toString(MBeanParameterInfo[] pinfo)