org.zodiac.script.engine.spel.SpelExpressionRootObject Maven / Gradle / Ivy
package org.zodiac.script.engine.spel;
import java.lang.reflect.Method;
public class SpelExpressionRootObject {
private final Method method;
private final Object[] args;
private final Object target;
private final Class> targetClass;
private final Method targetMethod;
public SpelExpressionRootObject(Method method, Object[] args, Object target, Class> targetClass, Method targetMethod) {
super();
this.method = method;
this.args = args;
this.target = target;
this.targetClass = targetClass;
this.targetMethod = targetMethod;
}
public Method getMethod() {
return method;
}
public Object[] getArgs() {
return args;
}
public Object getTarget() {
return target;
}
public Class> getTargetClass() {
return targetClass;
}
public Method getTargetMethod() {
return targetMethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy