com.queryflow.mapper.proxy.ProxyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of queryflow Show documentation
Show all versions of queryflow Show documentation
An ORM framework that can be developed as quickly as water flows!
The newest version!
package com.queryflow.mapper.proxy;
import net.sf.cglib.proxy.Callback;
public interface ProxyFactory {
T createProxy(Class clazz, Callback callback);
}