// If we don't use this config, then all rules' LHS object conditions will not match on .esb redeploys!
// (since objects are only equal if their ClassLoaders are also equal - and they're not on redeploys..)
final Properties properties = new Properties();
properties.setProperty(ClassLoaderCacheOption.PROPERTY_NAME, Boolean.FALSE.toString());
final ClassLoader classLoader = new RulesClassLoader(ruleInfo.getRuleSource());
KnowledgeBaseConfiguration kbaseConfig = KnowledgeBaseFactory.newKnowledgeBaseConfiguration(properties, classLoader);
// CEP
StringValue eventProcessingType = RULE_EVENT_PROCESSING_TYPE.getStringValue(ruleInfo.getEventProcessingType());
if (STREAM.equals(eventProcessingType))