Module pro.verron.officestamper
Package pro.verron.officestamper.api
Interface EvaluationContextConfigurer
public interface EvaluationContextConfigurer
The EvaluationContextConfigurer interface allows for custom configuration of a Spring Expression Language
(SPEL) EvaluationContext.
Implementations of this interface can be used
to add custom PropertyAccessors and MethodResolvers to the EvaluationContext.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configureEvaluationContext
(org.springframework.expression.spel.support.StandardEvaluationContext context) Configure the context before it's used by docxstamper.
-
Method Details
-
configureEvaluationContext
void configureEvaluationContext(org.springframework.expression.spel.support.StandardEvaluationContext context) Configure the context before it's used by docxstamper.- Parameters:
context
- the SPEL eval context, not null
-