1 21 package org.objectweb.fractal.jmx.agent; 22 23 import org.objectweb.fractal.api.control.AttributeController; 24 import javax.management.MBeanServer ; 25 26 52 public interface AdminAttributes extends AttributeController { 53 55 56 63 String getItfPatterns(); 64 65 85 void setItfPatterns(String str); 86 87 94 String getMonitorStringPatterns(); 95 96 137 void setMonitorStringPatterns(String str); 138 139 146 String getMonitorCounterPatterns(); 147 148 185 void setMonitorCounterPatterns(String str); 186 187 196 String getMonitorGaugePatterns(); 197 198 239 void setMonitorGaugePatterns(String str); 240 241 248 String getMonitorPeriodicPatterns(); 249 250 275 void setMonitorPeriodicPatterns(String str); 276 277 284 MBeanServer getRawMBeanServer(); 285 286 297 void setRawMBeanServer(MBeanServer srv) throws UnsupportedOperationException ; 298 } 299 | Popular Tags |