public synchronized void setStatisticState(final String statisticId, final boolean statisticStateValue)
throws EZBComponentException {
ManagedStatistic managedStatistic = this.managedStatistics.get(statisticId);
if (managedStatistic == null) {
throw new EZBComponentException("Cannot find statistic " + statisticId);
}
managedStatistic.setManagedStatisticState(statisticStateValue);
}