Package com.skyline.energy.executor

Examples of com.skyline.energy.executor.DataAccessExecutor


    this.cacheManager = cacheManager;
    this.dataAccessor = dataAccessor;
  }

  public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable {
    DataAccessExecutor executor = ExecutorFactory.getExecutor(cacheManager, dataAccessor, method);
    if (executor != null) {
      return executor.execute(obj, args);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.skyline.energy.executor.DataAccessExecutor

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.