![JAR search and dependency download from the Maven repository](/logo.png)
com.github.andyshao.proxy.ProxyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Useful-Tools Show documentation
Show all versions of Useful-Tools Show documentation
Some thing about the useful tools of the JDK 1.8.
package com.github.andyshao.proxy;
/**
*
* Title:public proxy factory interface
* Descript:
* Copyright: Copryright(c) Mar 17, 2014
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
* @param the type of target which will be proxy
*/
@FunctionalInterface
public interface ProxyFactory {
/**
* get the proxy
*
* @param target the target which will be proxy
* @return the proxy
*/
T getProxy(T target);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy