Class EnvironmentAccessor
java.lang.Object
org.springframework.context.expression.EnvironmentAccessor
- All Implemented Interfaces:
org.springframework.expression.PropertyAccessor, org.springframework.expression.TargetedAccessor
public class EnvironmentAccessor
extends Object
implements org.springframework.expression.PropertyAccessor
Read-only SpEL
PropertyAccessor that knows how to retrieve properties
of a Spring Environment instance.- Since:
- 3.1
- Author:
- Chris Beams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanRead(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) booleancanWrite(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) Read-only: returnsfalse.Class<?>[]org.springframework.expression.TypedValueread(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) Access the given target object by resolving the given property name against the given target environment.voidwrite(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name, @Nullable Object newValue)
-
Constructor Details
-
EnvironmentAccessor
public EnvironmentAccessor()
-
-
Method Details
-
getSpecificTargetClasses
- Specified by:
getSpecificTargetClassesin interfaceorg.springframework.expression.TargetedAccessor
-
canRead
public boolean canRead(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) throws org.springframework.expression.AccessException - Specified by:
canReadin interfaceorg.springframework.expression.PropertyAccessor- Throws:
org.springframework.expression.AccessException
-
read
public org.springframework.expression.TypedValue read(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) throws org.springframework.expression.AccessException Access the given target object by resolving the given property name against the given target environment.- Specified by:
readin interfaceorg.springframework.expression.PropertyAccessor- Throws:
org.springframework.expression.AccessException
-
canWrite
public boolean canWrite(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) throws org.springframework.expression.AccessException Read-only: returnsfalse.- Specified by:
canWritein interfaceorg.springframework.expression.PropertyAccessor- Throws:
org.springframework.expression.AccessException
-
write
public void write(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name, @Nullable Object newValue) throws org.springframework.expression.AccessException - Specified by:
writein interfaceorg.springframework.expression.PropertyAccessor- Throws:
org.springframework.expression.AccessException
-