} else if (attributeName.equals(CommonAttributes.STATISTICS_ENABLED.getName())) {
boolean enabled = CommonAttributes.STATISTICS_ENABLED.resolveModelAttribute(context, operation).asBoolean();
if (enabled) {
serverControl.enableMessageCounters();
} else {
serverControl.disableMessageCounters();
}
} else {
// Bug! Someone added the attribute to the set but did not implement
throw MessagingLogger.ROOT_LOGGER.unsupportedRuntimeAttribute(attributeName);
}