-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClass<?> getCommonPropertyType(ELContext context, Object base) Returns the most general type that this resolver accepts for thepropertyargument, given abaseobject.Class<?> For a givenbaseandproperty, attempts to identify the most general type that is acceptable for an object to be passed as thevalueparameter in a future call to theELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)method.Attempts to resolve the givenpropertyobject on the givenbaseobject.booleanisReadOnly(ELContext context, Object base, Object property) For a givenbaseandproperty, attempts to determine whether a call toELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail.voidAttempts to set the value of the givenpropertyobject on the givenbaseobject.Methods inherited from class jakarta.el.ELResolver
convertToType, invoke
-
Constructor Details
-
ScopedAttributeELResolver
public ScopedAttributeELResolver()
-
-
Method Details
-
getValue
Description copied from class:ELResolverAttempts to resolve the givenpropertyobject on the givenbaseobject.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.- Specified by:
getValuein classELResolver- Parameters:
elContext- The context of this evaluation.base- The base object whose property value is to be returned, ornullto resolve a top-level variable.property- The property or variable to be resolved.- Returns:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the result of the variable or property resolution; otherwise undefined. - Throws:
ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
getType
Description copied from class:ELResolverFor a givenbaseandproperty, attempts to identify the most general type that is acceptable for an object to be passed as thevalueparameter in a future call to theELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)method.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.This is not always the same as
getValue().getClass(). For example, in the case of anArrayELResolver, thegetTypemethod will return the element type of the array, which might be a superclass of the type of the actual element that is currently in the specified array element.If the resolver or the property is read-only, this method must return
null.- Specified by:
getTypein classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the acceptable type for.- Returns:
- If the
propertyResolvedproperty ofELContextwas set totrue, the most general acceptable type which must benullif the either the property or the resolver is read-only; otherwise undefined - Throws:
ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
setValue
public void setValue(ELContext context, Object base, Object property, Object val) throws ELException Description copied from class:ELResolverAttempts to set the value of the givenpropertyobject on the givenbaseobject.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller can safely assume no value has been set.- Specified by:
setValuein classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be set, ornullto set a top-level variable.property- The property or variable to be set.val- The value to set the property or variable to.- Throws:
ELException- if an exception was thrown while attempting to set the property or variable. The thrown exception must be included as the cause property of this exception, if available.
-
isReadOnly
Description copied from class:ELResolverFor a givenbaseandproperty, attempts to determine whether a call toELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.- Specified by:
isReadOnlyin classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the read-only status for.- Returns:
- If the
propertyResolvedproperty ofELContextwas set totrue, thentrueif the property is read-only orfalseif not; otherwise undefined. - Throws:
ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
getCommonPropertyType
Description copied from class:ELResolverReturns the most general type that this resolver accepts for thepropertyargument, given abaseobject. One use for this method is to assist tools in auto-completion.This assists tools in auto-completion and also provides a way to express that the resolver accepts a primitive value, such as an integer index into an array. For example, the
ArrayELResolverwill accept anyintas aproperty, so the return value would beInteger.class.- Specified by:
getCommonPropertyTypein classELResolver- Parameters:
context- The context of this evaluation.base- The base object to return the most general property type for, ornullto enumerate the set of top-level variables that this resolver can evaluate.- Returns:
nullif thisELResolverdoes not know how to handle the givenbaseobject; otherwiseObject.classif any type ofpropertyis accepted; otherwise the most generalpropertytype accepted for the givenbase.
-