1 16 package org.apache.cocoon.ajax; 17 18 import org.apache.cocoon.environment.Request; 19 20 26 public class AjaxHelper { 27 28 private AjaxHelper() { 29 } 31 32 35 public static final String AJAX_REQUEST_PARAMETER = "cocoon-ajax"; 36 37 40 public static final String BROWSER_UPDATE_URI = "http://apache.org/cocoon/browser-update/1.0"; 41 42 48 public static boolean isAjaxRequest(Request req) { 49 return req.getParameter(AJAX_REQUEST_PARAMETER) != null; 50 } 51 52 } 53 | Popular Tags |