Examples of WOActionResults


Examples of com.webobjects.appserver.WOActionResults

      /*
       * logs the action name into session's dictionary with a key = ERXActionLogging
       */
      @Override
      public WOActionResults invokeAction(WORequest arg0, WOContext arg1) {
        WOActionResults result = super.invokeAction(arg0, arg1);
        if (result != null && _action != null && ERXSession.anySession() != null) {
          ERXSession.anySession().setObjectForKey(toString(), "ERXActionLogging");
        }
        return result;
      }
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.