CountStatisticImpl removeCount = (CountStatisticImpl) stats.getRemoveCount();
Long removes = (Long) server.getAttribute(containerName, "RemoveCount");
removeCount.set(removes.longValue());
// Now build a TimeStatistics for every
InvocationStatistics times = (InvocationStatistics) server.getAttribute(containerName, "InvokeStats");
HashMap timesMap = new HashMap(times.getStats());
Iterator iter = timesMap.entrySet().iterator();
while (iter.hasNext())
{
Map.Entry entry = (Map.Entry) iter.next();
Method m = (Method) entry.getKey();