Interface AjaxEnabledView
- 
- All Superinterfaces:
- org.springframework.web.servlet.View
 - All Known Implementing Classes:
- AjaxThymeleafView,- FlowAjaxThymeleafView
 
 public interface AjaxEnabledView extends org.springframework.web.servlet.ViewInterface defining getter and setter methods for an ajaxHandlerproperty in Views, so that they can be used in Spring AJAX environments.- Since:
- 2.0.12
- Author:
- Daniel Fernández
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.js.ajax.AjaxHandlergetAjaxHandler()Return the AJAX handler (from Spring Javascript) used to determine whether a request is an AJAX request or not.voidsetAjaxHandler(org.springframework.js.ajax.AjaxHandler ajaxHandler)Sets the AJAX handler (from Spring Javascript) used to determine whether a request is an AJAX request or not.
 
- 
- 
- 
Method Detail- 
getAjaxHandlerorg.springframework.js.ajax.AjaxHandler getAjaxHandler() 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 AjaxThymeleafViewResolveror any of its subclasses, so thatsetAjaxHandler(AjaxHandler)can be called by the resolver when resolving the view, setting the default AJAX handler being used.- Returns:
- the AJAX handler.
 
 - 
setAjaxHandlervoid setAjaxHandler(org.springframework.js.ajax.AjaxHandler ajaxHandler) 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 AjaxThymeleafViewResolveror 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.- Parameters:
- ajaxHandler- the AJAX handler.
 
 
- 
 
-