facts[1]=holiday1;
facts[2]=holiday2;
//Set these into a new RuleSource object
RuleSource ruleSource = new RuleSource();
ruleSource.setRulesLocation(RULES_FILES);
ruleSource.setFacts(facts);
ruleSource.setGlobals(startDate);
// A lot of the running rules uses the same code. The RuleRunner (code in this project)
// keeps this code in one place. It needs to know
// - the name(s) of the files containing our rules
// - the fact object(s) containing the information to be passed in and out of our rules