AjaxHandler.java :  » Workflow-Engines » spring-webflow-2.0.8 » org » springframework » js » ajax » Java Open Source

Java Open Source » Workflow Engines » spring webflow 2.0.8 
spring webflow 2.0.8 » org » springframework » js » ajax » AjaxHandler.java
/*
 * Copyright 2004-2008 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.js.ajax;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Strategy interface that encapsulates knowledge about a client-side ajax system and how to communicate with that
 * system.
 * 
 * @author Keith Donald
 */
public interface AjaxHandler {

  /**
   * Is the current request an Ajax request?
   * @param request the current request
   * @param response the current response
   */
  public boolean isAjaxRequest(HttpServletRequest request, HttpServletResponse response);

  /**
   * Send a redirect request to the Ajax client. This should cause the client-side agent to send a new request to the
   * specified target url.
   * @param request the current request
   * @param response the current response
   * @param targetUrl the target url to redirect to
   * @param popup wheter the redirect should be sent from a new popup dialog window
   */
  public void sendAjaxRedirect(String targetUrl, HttpServletRequest request, HttpServletResponse response,
      boolean popup) throws IOException;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.