Package com.skyline.energy.executor

Examples of com.skyline.energy.executor.DataAccessExecutor.execute()


  }

  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
Copyright © 2018 www.massapi.com. 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.