org.apache.ibatis.reflection.invoker.Invoker Maven / Gradle / Ivy
package org.apache.ibatis.reflection.invoker;
import java.lang.reflect.InvocationTargetException;
public interface Invoker {
Object invoke(Object target, Object[] args) throws IllegalAccessException, InvocationTargetException;
Class getType();
}