Package com.iisigroup.cap.action

Examples of com.iisigroup.cap.action.IAction


      IHandler handler) {
    IResult rtn = null;
    @SuppressWarnings("static-access")
    String actionType = params.get(handler.FORM_ACTION);
    //setName(handler.getHandlerName() + "." + actionType);
    IAction action = handler.getAction(actionType);
    rtn = action.doWork(params);
    ctx.setGoToStep(NEXT);
    ctx.setResult(rtn);
    return ctx;
  }// ;
View Full Code Here

TOP

Related Classes of com.iisigroup.cap.action.IAction

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.