Package com.webobjects.appserver

Examples of com.webobjects.appserver.WOResponse.userInfo()


        response = (AjaxResponse) existingResponse;
      }
      else {
        response = new AjaxResponse(request, context);
        response.setHeaders(existingResponse.headers());
        response.setUserInfo(existingResponse.userInfo());
        response.appendContentString(existingResponse.contentString());
      }
    }
    if (response == null) {
      response = new AjaxResponse(request, context);
View Full Code Here


     * @param component WOComponent to evaluate the associations in
     * @return NSMutableArray containing the hotKeys being used by ERXAccessibleSubmitButtons on this page
     */
    protected NSMutableArray usedHotKeys(WOComponent component) {
      WOResponse response = component.context().response();
      NSDictionary userInfo = response.userInfo();
      if (userInfo == null) {
        userInfo = new NSMutableDictionary(new NSMutableArray(), ERXAccessibleSubmitButton.class.getName());
        response.setUserInfo(userInfo);
      }
     
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.