Package org.jrest4guice.dao.actions

Examples of org.jrest4guice.dao.actions.ActionContext


    if (action == null) {
      String msg = "无法获取" + proxy.getClass() + "." + method.getName() + "方法声明的Action实例。";
      log.error(msg);
      throw new RejectedExecutionException(msg);
    } else {
      ActionContext context = action.getContext();
      context.setAction(action);
      return context.execute(method, args);
    }
  }
View Full Code Here

TOP

Related Classes of org.jrest4guice.dao.actions.ActionContext

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.