Package cn.com.byd.factory.impl

Examples of cn.com.byd.factory.impl.DefaultProxyFactory


    if (proxyFactory != null) {
      return;
    }
    // 如果传入的工厂为空将采用默认的工厂模式
    if (StringUtil.isEmptyAndNull(factoryName)) {
      proxyFactory = new DefaultProxyFactory();
      return;
    }
    proxyFactory = (ProxyFactory)RefObjectUtil.loadClass(factoryName);
  }
View Full Code Here


  /**
   *获取指定全局Proxy工厂的实现类
   * @return
   */
  public static ProxyFactory getProxyFactory() {
    return proxyFactory == null ? new DefaultProxyFactory() : proxyFactory;
  }
View Full Code Here

TOP

Related Classes of cn.com.byd.factory.impl.DefaultProxyFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.