org.wickedsource.docxstamper.el.NoOpEvaluationContextConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx-stamper Show documentation
Show all versions of docx-stamper Show documentation
Template engine for .docx documents.
The newest version!
package org.wickedsource.docxstamper.el;
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.wickedsource.docxstamper.api.EvaluationContextConfigurer;
/**
* {@link EvaluationContextConfigurer} that does no customization.
*/
public class NoOpEvaluationContextConfigurer implements EvaluationContextConfigurer {
@Override
public void configureEvaluationContext(StandardEvaluationContext context) {
// don't customize it
}
}