top.osjf.sdk.spring.proxy.JdkProxyHandler Maven / Gradle / Ivy
The newest version!
package top.osjf.sdk.spring.proxy;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
/**
* {@link InvocationHandler} for {@link ProxyHandler} refit.
*
* @author zhangpengfei
* @since 1.0.0
*/
public interface JdkProxyHandler extends InvocationHandler, ProxyHandler {
@Override
default Object invoke(Object proxy, Method method, Object[] args) {
return handle(proxy, method, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy