* to resolve any classes required when creating the rule set
* @return A map of default properties to be used when creating a rule execution set
*/
public Map<String, Object> getRuleExecutionSetCreationDefaultProperties(
ClassLoader propertyClassLoader) {
PackageBuilderConfiguration configuration =
new PackageBuilderConfiguration(propertyClassLoader);
Map<String, Object> properties = new HashMap<String, Object>();
properties.put(Constants.RES_PACKAGEBUILDER_CONFIG, configuration);
RuleBaseConfiguration baseConfiguration = new RuleBaseConfiguration(propertyClassLoader);
properties.put(Constants.RES_RULEBASE_CONFIG, baseConfiguration);
return properties;