Class EnvironmentAccessor
java.lang.Object
org.springframework.context.expression.EnvironmentAccessor
- All Implemented Interfaces:
org.springframework.expression.PropertyAccessor
public class EnvironmentAccessor
extends Object
implements org.springframework.expression.PropertyAccessor
Read-only EL property accessor that knows how to retrieve keys
of a Spring
Environment instance.- Since:
- 3.1
- Author:
- Chris Beams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanCan read anyEnvironment, thus always returns true.booleanRead-only: returnsfalse.Class<?>[]org.springframework.expression.TypedValueAccess the given target object by resolving the given property name against the given target environment.voidwrite(org.springframework.expression.EvaluationContext context, Object target, String name, Object newValue) Read-only: no-op.
-
Constructor Details
-
EnvironmentAccessor
public EnvironmentAccessor()
-
-
Method Details
-
getSpecificTargetClasses
- Specified by:
getSpecificTargetClassesin interfaceorg.springframework.expression.PropertyAccessor
-
canRead
public boolean canRead(org.springframework.expression.EvaluationContext context, @Nullable Object target, String name) throws org.springframework.expression.AccessException Can read anyEnvironment, thus always returns true.- Specified by:
canReadin interfaceorg.springframework.expression.PropertyAccessor- Returns:
- true
- 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 Read-only: no-op.- Specified by:
writein interfaceorg.springframework.expression.PropertyAccessor- Throws:
org.springframework.expression.AccessException
-