Example usage for javax.management MBeanInfo MBeanInfo

List of usage examples for javax.management MBeanInfo MBeanInfo

Introduction

In this page you can find the example usage for javax.management MBeanInfo MBeanInfo.

Prototype

public MBeanInfo(String className, String description, MBeanAttributeInfo[] attributes,
        MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations,
        MBeanNotificationInfo[] notifications) throws IllegalArgumentException 

Source Link

Document

Constructs an MBeanInfo .

Usage

From source file:org.parallelj.launching.transport.jmx.DynamicLegacyProgram.java

@Override
public final MBeanInfo getMBeanInfo() {
    final MBeanOperationInfo[] opers = createMBeanOperationInfo();
    return new MBeanInfo(remoteProgram.getAdapterClass().getCanonicalName(), null, null, null, opers, null);
}