Package org.camunda.bpm.engine.spring
Class SpringBeansResolverFactory
- java.lang.Object
-
- org.camunda.bpm.engine.spring.SpringBeansResolverFactory
-
- All Implemented Interfaces:
Resolver
,ResolverFactory
public class SpringBeansResolverFactory extends java.lang.Object implements ResolverFactory, Resolver
ResolverFactory
andResolver
classes to make the beans managed by the Spring container available in scripting{@see org.camunda.bpm.engine.spring.SpringProcessEngineConfiguration#initScripting()}
-
-
Constructor Summary
Constructors Constructor Description SpringBeansResolverFactory(org.springframework.context.ApplicationContext applicationContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsKey(java.lang.Object key)
Allows checking whether there is currently an object bound to the key.Resolver
createResolver(VariableScope variableScope)
java.lang.Object
get(java.lang.Object key)
Returns the object currently bound to the key or false if no object is currently bound to the keyjava.util.Set<java.lang.String>
keySet()
Returns the set of key that can be resolved using this resolver.
-
-
-
Method Detail
-
createResolver
public Resolver createResolver(VariableScope variableScope)
- Specified by:
createResolver
in interfaceResolverFactory
-
containsKey
public boolean containsKey(java.lang.Object key)
Description copied from interface:Resolver
Allows checking whether there is currently an object bound to the key.- Specified by:
containsKey
in interfaceResolver
- Parameters:
key
- the key to check- Returns:
- true if there is currently an object bound to the key. False otherwise.
-
get
public java.lang.Object get(java.lang.Object key)
Description copied from interface:Resolver
Returns the object currently bound to the key or false if no object is currently bound to the key
-
-