Package webwork.action

Examples of webwork.action.ActionContext


     
       //logger.info("servletPath:" + servletPath);
     
       String actionName = getActionName(servletPath);
       GenericDispatcher gd = new GenericDispatcher(actionName, false);
       ActionContext context = gd.prepareContext();
      
       //logger.info("actionName:" + actionName);

       InfoGluePrincipal principal = (InfoGluePrincipal)aRequest.getSession().getAttribute("infogluePrincipal");
       if(principal != null)
View Full Code Here


      return property;
    }

    public static Object findOnValueStack(String expr)
    {
    ActionContext a = ActionContext.getContext();
    Object value = a.getValueStack().findValue(expr);
    return value;
  }
View Full Code Here

TOP

Related Classes of webwork.action.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.