All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.datalking.aop.framework.ProxyConfig Maven / Gradle / Ivy

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