protected List getBeanFactoryPostProcessors(String serviceUnitRootPath) {
Map beans = new HashMap();
beans.put("context", new EndpointComponentContext(((BaseLifeCycle) component.getLifeCycle()).getContext()));
List processors = new ArrayList(super.getBeanFactoryPostProcessors(serviceUnitRootPath));
processors.add(new ParentBeanFactoryPostProcessor(beans));
return processors;
}