org.thymeleaf.spring4.webflow.view.AjaxEnabledView Maven / Gradle / Ivy
Show all versions of thymeleaf-spring4 Show documentation
/*
* =============================================================================
*
* Copyright (c) 2011-2016, The THYMELEAF team (http://www.thymeleaf.org)
*
* 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.thymeleaf.spring4.webflow.view;
import org.springframework.js.ajax.AjaxHandler;
import org.springframework.web.servlet.View;
/**
*
* Interface defining getter and setter methods for an
* ajaxHandler property in Views, so that they can
* be used in Spring AJAX environments.
*
*
* @author Daniel Fernández
*
* @since 2.0.12
*
*/
public interface AjaxEnabledView extends View {
/**
*
* Return the AJAX handler (from Spring Javascript) used
* to determine whether a request is an AJAX request or not.
*
*
* Views implementing this interface should be used with an instance of
* {@link AjaxThymeleafViewResolver} or any of its subclasses,
* so that {@link #setAjaxHandler(AjaxHandler)} can be called by
* the resolver when resolving the view, setting the default
* AJAX handler being used.
*
*
* @return the AJAX handler.
*/
public AjaxHandler getAjaxHandler();
/**
*
* Sets the AJAX handler (from Spring Javascript) used
* to determine whether a request is an AJAX request or not.
*
*
* Views implementing this interface should be used with an instance of
* {@link AjaxThymeleafViewResolver} or any of its subclasses,
* so that this method can be called by
* the resolver when resolving the view, setting the default
* AJAX handler being used.
*
*
* @param ajaxHandler the AJAX handler.
*/
public void setAjaxHandler(final AjaxHandler ajaxHandler);
}