Java MBean getMBeanName(final String serviceName, final String nameName)

Here you can find the source of getMBeanName(final String serviceName, final String nameName)

Description

get M Bean Name

License

Apache License

Declaration

static private ObjectName getMBeanName(final String serviceName,
            final String nameName) 

Method Source Code

//package com.java2s;
/*/*from   ww  w . j av a2  s  . c  om*/
 * Copyright 2010 Outerthought bvba
 *
 * 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.*;

public class Main {
    static private ObjectName getMBeanName(final String serviceName,
            final String nameName) {
        ObjectName name = null;
        try {
            name = new ObjectName("Lily:" + "service=" + serviceName
                    + ",name=" + nameName);
        } catch (MalformedObjectNameException e) {
            throw new RuntimeException(e);
        }
        return name;
    }
}

Related

  1. getMBeanAttribute(final MBeanServerConnection connection, final String nameString, final String attributeName)
  2. getMBeanAttributeMap(MBeanServerConnection server, ObjectName objectName, String delimeter, String... attributeNames)
  3. getMBeanAttributes(final MBeanServer mBeanServer, final String objectNameString)
  4. getMBeanAttributeValue(final MBeanServerConnection connection, final ObjectName objName, final String attributeName)
  5. getMBeanConnections(final Map connectors)
  6. getMbeans( final MBeanServerConnection mBeanServerConnection)
  7. getMBeanServer()
  8. getMbeanServer()
  9. getMBeanServer()