Ejemplo n.º 1
0
 /** Set the value of a specific attribute of a named MBean. */
 public void setAttribute(ObjectName name, Attribute attribute)
     throws InvalidAttributeValueException, MBeanException, IOException {
   try {
     server.setAttribute(name, attribute);
   } catch (InstanceNotFoundException e) {
     // TODO: A MBean may have been unregistered.
   } catch (AttributeNotFoundException e) {
     assert (false);
   } catch (ReflectionException e) {
     // TODO: should log the error
   }
 }