*/
public void setStatisticMode(final String statisticId, final String statisticMode) throws MBeanException {
try {
getStatisticComponent().setStatisticMode(statisticId, STATISTIC_MODE.valueOf(statisticMode));
} catch (EZBComponentException e) {
throw new MBeanException(new Exception(e.getClass().getSimpleName() + " : " + e.getMessage()));
}
}