All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.thymeleaf.spring4.view.AjaxEnabledView Maven / Gradle / Ivy

/*
 * =============================================================================
 * 
 *   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.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 * * @deprecated Deprecated in 3.0.0. Moved to the org.thymeleaf.spring4.webflow.view package. Will be removed * from this package in Thymeleaf 3.1. * */ @Deprecated 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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy