private void activateOrChange( RulesProfile profile, ActiveRule parentActiveRule, String userName) { ActiveRule oldActiveRule = profile.getActiveRule(parentActiveRule.getRule()); if (oldActiveRule != null) { if (oldActiveRule.isInherited()) { removeActiveRule(profile, oldActiveRule); } else { oldActiveRule.setInheritance(ActiveRule.OVERRIDES); getSession().saveWithoutFlush(oldActiveRule); return; // no need to change in children } } ActiveRule newActiveRule = (ActiveRule) parentActiveRule.clone(); newActiveRule.setRulesProfile(profile); newActiveRule.setInheritance(ActiveRule.INHERITED); profile.addActiveRule(newActiveRule); getSession().saveWithoutFlush(newActiveRule); if (oldActiveRule != null) { ruleChanged(profile, oldActiveRule, newActiveRule, userName); } else { ruleEnabled(profile, newActiveRule, userName); } for (RulesProfile child : getChildren(profile)) { activateOrChange(child, newActiveRule, userName); } }
/** Rule was activated */ public void activated(int profileId, int activeRuleId, String userName) { ActiveRule activeRule = getSession().getEntity(ActiveRule.class, activeRuleId); RulesProfile profile = getSession().getEntity(RulesProfile.class, profileId); ruleEnabled(profile, activeRule, userName); // Notify child profiles activatedOrChanged(profileId, activeRuleId, userName); }