long modifyTime = config.getModifyDate().getTime();
synchronized (this) {
if (modifyTime > m_modifyTime) {
String content = config.getContent();
Aggregation aggregation = DefaultSaxParser.parse(content);
m_aggregation = aggregation;
m_handler.register(queryAggregationRules());
m_modifyTime = modifyTime;
}