1 17 package org.apache.servicemix.jbi.framework; 18 19 import javax.jbi.management.ComponentLifeCycleMBean; 20 import javax.management.ObjectName ; 21 22 25 public interface ComponentMBean extends ComponentLifeCycleMBean { 26 27 31 public boolean isExchangeThrottling(); 32 33 38 public void setExchangeThrottling(boolean value); 39 40 44 public long getThrottlingTimeout(); 45 46 50 public void setThrottlingTimeout(long value); 51 52 57 public int getThrottlingInterval(); 58 59 64 public void setThrottlingInterval(int value); 65 66 69 public ObjectName getStatsMBeanName(); 70 } 71 | Popular Tags |