org.mule.mvel2.util.StaticStub Maven / Gradle / Ivy
Go to download
MVEL is a powerful expression language for Java-based applications.
It provides a plethora of features and is suited for everything
from the smallest property binding and extraction, to full blown scripts.
This is a fork of MVEL customized for use in Mule.
package org.mule.mvel2.util;
import org.mule.mvel2.integration.VariableResolverFactory;
import java.io.Serializable;
import java.lang.reflect.InvocationTargetException;
/**
* @author Mike Brock
*/
public interface StaticStub extends Serializable {
public Object call(Object ctx, Object thisCtx, VariableResolverFactory factory, Object[] parameters)
throws IllegalAccessException, InvocationTargetException;
}