
com.github.houbb.heaven.support.proxy.IProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heaven Show documentation
Show all versions of heaven Show documentation
Collect base useful tools for dev.
The newest version!
package com.github.houbb.heaven.support.proxy;
/**
* 代理接口
* @author binbin.hou
* @since 0.1.3
*/
public interface IProxy {
/**
* 获取代理对象
* 1. 如果是实现了接口,默认使用 dynamic proxy 即可。
* 2. 如果没有实现接口,默认使用 CGLIB 实现代理。
* @return 代理对象
*/
Object proxy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy