SEC-3011: AbstractUrlAuthorizationConfigurer postProcess default AccessDecisionManager

This commit is contained in:
Rob Winch
2015-07-21 08:52:36 -05:00
parent ab1b7a1eb6
commit 07fb2af74b
2 changed files with 51 additions and 3 deletions

View File

@@ -156,7 +156,8 @@ abstract class AbstractInterceptUrlConfigurer<C extends AbstractInterceptUrlConf
* @return the default {@code AccessDecisionManager}
*/
private AccessDecisionManager createDefaultAccessDecisionManager(H http) {
return new AffirmativeBased(getDecisionVoters(http));
AffirmativeBased result = new AffirmativeBased(getDecisionVoters(http));
return postProcess(result);
}
/**