Package com.googlecode.sonic.constant

Examples of com.googlecode.sonic.constant.ActionResult


    if (Modifier.isPublic(method.getModifiers())
        && !Modifier.isAbstract(method.getModifiers())) {
      Action action = (Action) clazz.newInstance();
      setRequestAndResponse(action, request, response);
      log.info(clazzCanonicalName + "#" + method.getName() + " -> start");
      ActionResult actionResult = (ActionResult) method.invoke(action);
      log.info(clazzCanonicalName + "#" + method.getName() + " -> end");
      return getDestination(clazz, method, actionResult);
    } else {
      log.error("method : '" + method.getName() + "' is invalid.");
      throw new IllegalStateException();
View Full Code Here

TOP

Related Classes of com.googlecode.sonic.constant.ActionResult

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.