private void notifyAllChanged() {
synchronized(conditionSetChangedManager) {
for(String conditionSetName: conditionSetChangedManager.getAllKeys()) {
IHttpConditionSet conditionSet = getConditionSet(conditionSetName);
conditionSetChangedManager.fireEvent(conditionSetName, new ConditionSetChanged(conditionSet));
}
}
}