Class SpringProcessApplicationElResolver
- java.lang.Object
- 
- org.camunda.bpm.engine.spring.application.SpringProcessApplicationElResolver
 
- 
- All Implemented Interfaces:
- ProcessApplicationElResolver
 
 public class SpringProcessApplicationElResolver extends Object implements ProcessApplicationElResolver ProcessApplicationElResolver implementation providing support for the Spring Framework. This implementation supports the following environments: - Bootstrapping through SpringProcessApplication. In this case the spring application context is retrieved from theSpringProcessApplicationclass.
- Bootstrapping through ServletProcessApplication. In this case we have access to theServletContextwhich allows accessing the web application's application context through the WebApplicationContextUtils class.
 Limitation: The EjbProcessApplicationis currently unsupported.- Author:
- Daniel Meyer
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.camunda.bpm.application.ProcessApplicationElResolverProcessApplicationElResolver.ProcessApplicationElResolverSorter
 
- 
 - 
Field Summary- 
Fields inherited from interface org.camunda.bpm.application.ProcessApplicationElResolverCDI_RESOLVER, SPRING_RESOLVER
 
- 
 - 
Constructor SummaryConstructors Constructor Description SpringProcessApplicationElResolver()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ELResolvergetElResolver(AbstractProcessApplication processApplication)return the Resolver.IntegergetPrecedence()Allows to set a precedence to the ElResolver.
 
- 
- 
- 
Method Detail- 
getPrecedencepublic Integer getPrecedence() Description copied from interface:ProcessApplicationElResolverAllows to set a precedence to the ElResolver. Resolver with a lower precedence will be invoked first.- Specified by:
- getPrecedencein interface- ProcessApplicationElResolver
 
 - 
getElResolverpublic ELResolver getElResolver(AbstractProcessApplication processApplication) Description copied from interface:ProcessApplicationElResolverreturn the Resolver. May be null.- Specified by:
- getElResolverin interface- ProcessApplicationElResolver
 
 
- 
 
-