mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 14:52:24 +00:00
Fix Documented Default Value for AuthorizationFilter properties
Closes gh-13456
This commit is contained in:
parent
b02594d451
commit
863aa5f65f
@ -188,7 +188,7 @@ public class AuthorizationFilter extends GenericFilterBean {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets whether this filter apply only once per request. By default, this is
|
* Sets whether this filter apply only once per request. By default, this is
|
||||||
* <code>true</code>, meaning the filter will only execute once per request. Sometimes
|
* <code>false</code>, meaning the filter will execute on every request. Sometimes
|
||||||
* users may wish it to execute more than once per request, such as when JSP forwards
|
* users may wish it to execute more than once per request, such as when JSP forwards
|
||||||
* are being used and filter security is desired on each included fragment of the HTTP
|
* are being used and filter security is desired on each included fragment of the HTTP
|
||||||
* request.
|
* request.
|
||||||
@ -200,7 +200,8 @@ public class AuthorizationFilter extends GenericFilterBean {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If set to true, the filter will be applied to error dispatcher. Defaults to false.
|
* If set to true, the filter will be applied to error dispatcher. Defaults to
|
||||||
|
* {@code true}.
|
||||||
* @param filterErrorDispatch whether the filter should be applied to error dispatcher
|
* @param filterErrorDispatch whether the filter should be applied to error dispatcher
|
||||||
*/
|
*/
|
||||||
public void setFilterErrorDispatch(boolean filterErrorDispatch) {
|
public void setFilterErrorDispatch(boolean filterErrorDispatch) {
|
||||||
@ -209,7 +210,7 @@ public class AuthorizationFilter extends GenericFilterBean {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* If set to true, the filter will be applied to the async dispatcher. Defaults to
|
* If set to true, the filter will be applied to the async dispatcher. Defaults to
|
||||||
* false.
|
* {@code true}.
|
||||||
* @param filterAsyncDispatch whether the filter should be applied to async dispatch
|
* @param filterAsyncDispatch whether the filter should be applied to async dispatch
|
||||||
*/
|
*/
|
||||||
public void setFilterAsyncDispatch(boolean filterAsyncDispatch) {
|
public void setFilterAsyncDispatch(boolean filterAsyncDispatch) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user