All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.verron.officestamper.api.EvaluationContextConfigurer Maven / Gradle / Ivy

Go to download

Office-stamper is a Java template engine for docx documents, forked from org.wickedsource.docx-stamper

The newest version!
package pro.verron.officestamper.api;

import org.springframework.expression.spel.support.StandardEvaluationContext;

/**
 * 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.
 */
public interface EvaluationContextConfigurer {
    /**
     * Configure the context before it's used by docxstamper.
     *
     * @param context the SPEL eval context, not null
     */
    void configureEvaluationContext(StandardEvaluationContext context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy