List of usage examples for javax.management MBeanInfo MBeanInfo
public MBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications) throws IllegalArgumentException
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); }