105106107108109110111
private RuleServiceCallHelper ruleServiceCallHelper; public BusinessRulesProcessor(final ConfigTree config) throws ConfigurationException, RegistryException, MessageRouterException { super(config); ruleServiceCallHelper = new RuleServiceCallHelper(config); }
144145146147148149150151152153154
public void setConfigTree(final ConfigTree configTree) { try { this.ruleServiceCallHelper = new RuleServiceCallHelper(configTree); } catch (ConfigurationException e) { throw new IllegalStateException(e.getMessage(), e); }