com.github.datalking.aop.framework.ProxyConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-ioc Show documentation
Show all versions of play-ioc Show documentation
simple ioc container with aop support.
The newest version!
package com.github.datalking.aop.framework;
import java.io.Serializable;
/**
* 创建代理的配置信息
*
* @author yaoo on 4/18/18
*/
public class ProxyConfig implements Serializable {
private boolean proxyTargetClass = false;
// boolean exposeProxy = false;
// private boolean frozen = false;
// private boolean optimize = false;
public ProxyConfig() {
}
public ProxyConfig(boolean proxyTargetClass) {
this.proxyTargetClass = proxyTargetClass;
}
public boolean isProxyTargetClass() {
return proxyTargetClass;
}
public void setProxyTargetClass(boolean proxyTargetClass) {
this.proxyTargetClass = proxyTargetClass;
}
@Override
public String toString() {
return "ProxyConfig{" +
"proxyTargetClass=" + proxyTargetClass +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy