Examples of MBeanEntry


Examples of org.jboss.mx.server.registry.MBeanEntry

/*      */   }
/*      */
/*      */   public AttributeList setAttributes(ObjectName name, AttributeList attributes)
/*      */     throws InstanceNotFoundException, ReflectionException
/*      */   {
/*  623 */     MBeanEntry entry = this.registry.get(name);
/*      */
/*  625 */     String className = entry.getResourceClassName();
/*      */
/*  630 */     checkMBeanPermission(className, null, name, "setAttribute");
/*      */
/*  632 */     MBeanInvoker mbean = entry.getInvoker();
/*  633 */     AttributeList list = mbean.setAttributes(attributes);
/*  634 */     SecurityManager sm = System.getSecurityManager();
/*  635 */     if (sm != null)
/*      */     {
/*  638 */       Iterator iter = list.iterator();
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.