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

org.wickedsource.docxstamper.api.EvaluationContextConfigurer Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package org.wickedsource.docxstamper.api;

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

/**
 * Allows for custom configuration of a spring expression language {@link org.springframework.expression.EvaluationContext}.
 * This can  for example be used to add custom {@link org.springframework.expression.PropertyAccessor}s and {@link org.springframework.expression.MethodResolver}s.
 */
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