joranInterpreter = new Interpreter(rs);
ExecutionContext ec = joranInterpreter.getExecutionContext();
ec.setContext(context);
// The following line adds the capability to parse nested components
NestedComponentIA nestedIA = new NestedComponentIA();
nestedIA.setContext(context);
joranInterpreter.addImplicitAction(nestedIA);
NestedSimplePropertyIA nestedSimpleIA = new NestedSimplePropertyIA();
nestedIA.setContext(context);
joranInterpreter.addImplicitAction(nestedSimpleIA);
Map<String, Object> omap = ec.getObjectMap();
omap.put(ActionConst.APPENDER_BAG, new HashMap());
omap.put(ActionConst.FILTER_CHAIN_BAG, new HashMap());