org.smartboot.http.restful.intercept.MethodInvocation Maven / Gradle / Ivy
package org.smartboot.http.restful.intercept;
import java.lang.reflect.Method;
/**
* @author 三刀([email protected])
* @version V1.0 , 2023/1/25
*/
public interface MethodInvocation {
Method getMethod();
Object[] getArguments();
Object getThis();
Object proceed() throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy