Class RootPropertyResolver
java.lang.Object
org.flowable.common.engine.impl.javax.el.ELResolver
org.flowable.common.engine.impl.de.odysseus.el.util.RootPropertyResolver
Simple root property resolver implementation. This resolver handles root properties (i.e.
base == null && property instanceof String), which are stored in a map. The
properties can be accessed via the getProperty(String),
setProperty(String, Object), isProperty(String) and properties()
methods.- Author:
- Christoph Beck
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a read/write root property resolverRootPropertyResolver(boolean readOnly) Create a root property resolver -
Method Summary
Modifier and TypeMethodDescriptionClass<?> getCommonPropertyType(ELContext context, Object base) Obtain the most common type that is acceptable for the given base object.getProperty(String property) Get property valueClass<?> Obtain the most generally acceptable type that may be used to set the given property on the given object using the given context.Obtain the value of the given property on the given object using the given context.Invokes a method on the given object.booleanisProperty(String property) Test propertybooleanisReadOnly(ELContext context, Object base, Object property) Determine if the given property on the given object is read-only using the given context.Get propertiesvoidsetProperty(String property, Object value) Set property valuevoidSet the value of the given property on the given object using the given context.Methods inherited from class ELResolver
convertToType
-
Constructor Details
-
RootPropertyResolver
public RootPropertyResolver()Create a read/write root property resolver -
RootPropertyResolver
public RootPropertyResolver(boolean readOnly) Create a root property resolver- Parameters:
readOnly-
-
-
Method Details
-
getCommonPropertyType
Description copied from class:ELResolverObtain the most common type that is acceptable for the given base object.- Specified by:
getCommonPropertyTypein classELResolver- Parameters:
context- The context in which the examination takes placebase- The object to examine- Returns:
- {code null} if the most common type cannot be determined, otherwise the most common type
-
getType
Description copied from class:ELResolverObtain the most generally acceptable type that may be used to set the given property on the given object using the given context.- Specified by:
getTypein classELResolver- Parameters:
context- The EL context for this evaluationbase- The base object on which the property is to be foundproperty- The property whose type is to be returned- Returns:
- the most general type that maybe used to set the provided property or
nullif the resolver is read-only.
-
getValue
Description copied from class:ELResolverObtain the value of the given property on the given object using the given context.- Specified by:
getValuein classELResolver- Parameters:
context- The EL context for this evaluationbase- The base object on which the property is to be foundproperty- The property whose value is to be returned- Returns:
- the value of the provided property
-
isReadOnly
Description copied from class:ELResolverDetermine if the given property on the given object is read-only using the given context.- Specified by:
isReadOnlyin classELResolver- Parameters:
context- The EL context for this evaluationbase- The base object on which the property is to be foundproperty- The property to be checked for read only status- Returns:
trueif the identified property is read only, otherwisefalse
-
setValue
public void setValue(ELContext context, Object base, Object property, Object value) throws PropertyNotWritableException Description copied from class:ELResolverSet the value of the given property on the given object using the given context.- Specified by:
setValuein classELResolver- Parameters:
context- The EL context for this evaluationbase- The base object on which the property is to be foundproperty- The property whose value is to be setvalue- The value to set the property to- Throws:
PropertyNotWritableException- If the base/property combination provided to the resolver is one that the resolver can handle but the property was not writable
-
invoke
public Object invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params) Description copied from class:ELResolverInvokes a method on the given object.- Overrides:
invokein classELResolver- Parameters:
context- The EL context for this evaluationbase- The base object on which the method is to be foundmethod- The method to invokeparamTypes- The types of the parameters of the method to invokeparams- The parameters with which to invoke the method- Returns:
- This default implementation always returns
null
-
getProperty
-
setProperty
-
isProperty
Test property- Parameters:
property- property name- Returns:
trueif the given property is associated with a value
-
properties
-