Examples of Mbean


Examples of org.jgroups.demo.tankwar.jmx.annotations.MBean

    }

  }
  private static ObjectName getObjectName(Object obj, String name) throws MalformedObjectNameException {
   
    MBean resource = obj.getClass().getAnnotation(MBean.class);
       
    if (name != null && name.length() > 0) {
      return new ObjectName(name);
    } else if (resource.objectName() != null && resource.objectName().length() > 0) {
            return new ObjectName(resource.objectName());
        } else {
            throw new MalformedObjectNameException(obj + " of class " + obj.getClass() + " has an invalid object name");
        }
    }
View Full Code Here

Examples of org.jgroups.demo.tankwar.jmx.annotations.MBean

  Object getObject() {
        return obj;
    }
 
  private void findDescription() {
        MBean mbean=getObject().getClass().getAnnotation(MBean.class);
        if(mbean != null && mbean.description() != null && mbean.description().trim().length() > 0) {
            description=mbean.description();
            MBeanAttributeInfo info=new MBeanAttributeInfo(ResourceMBean.MBEAN_DESCRITION,
                                                           "java.lang.String",
                                                           "MBean description",
                                                           true,
                                                           false,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.