use of com.predic8.membrane.core.lang.groovy.GroovyLanguageSupport in project service-proxy by membrane.
the class ConditionalInterceptor method init.
@Override
public void init(Router router) throws Exception {
super.init(router);
LanguageSupport ls = new GroovyLanguageSupport();
condition = ls.compileExpression(router, test);
}
Aggregations