{
if (!STARTED)
{
addTriggers();
ExoContainer container = ExoContainerContext.getTopContainer();
ManagementContext ctx = null;
if (container != null)
{
ctx = container.getManagementContext();
}
if (ctx == null)
{
LOG.warn("Cannot register the statistics");
}
else
{
ctx.register(new JCRStatisticsManager());
}
STARTED = true;
}
}
}