Package org.camunda.bpm.engine.spring.components.aop.util

Examples of org.camunda.bpm.engine.spring.components.aop.util.Scopifier


    for (String beanName : beanFactory.getBeanDefinitionNames()) {
      BeanDefinition definition = beanFactory.getBeanDefinition(beanName);
      // Replace this or any of its inner beans with scoped proxy if it has this scope
      boolean scoped = PROCESS_SCOPE_NAME.equals(definition.getScope());
      Scopifier scopifier = new Scopifier(registry, PROCESS_SCOPE_NAME, proxyTargetClass, scoped);
      scopifier.visitBeanDefinition(definition);
      if (scoped) {
        Scopifier.createScopedProxy(beanName, definition, registry, proxyTargetClass);
      }
    }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.spring.components.aop.util.Scopifier

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.