You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/docs/asciidoc/flow-security.adoc
+26-12
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ The attributes are compared against the user's granted attributes by a Spring Se
53
53
----
54
54
====
55
55
56
-
By default, a role-based access-decision manager is used to determine if the user is allowed access.
56
+
By default, an authority-based `AuthorizationManager` is used to determine if the user is allowed access.
57
57
This needs to be overridden if your application is not using authorization roles.
58
58
59
59
[[_flow_security_secured_element_match]]
@@ -100,24 +100,38 @@ This exception is later caught by Spring Security and used to prompt the user to
100
100
It is important that this exception be allowed to travel up the execution stack uninhibited.
101
101
Otherwise, the end user may not be prompted to authenticate.
102
102
103
-
[[_flow_security_listener_adm]]
104
-
==== Custom Access Decision Managers
103
+
[[_flow_security_listener_am]]
104
+
==== Custom Authorization Managers
105
105
106
-
If your application uses authorities that are not role-based, you need to configure a custom `AccessDecisionManager`.
107
-
You can override the default decision manager by setting the `accessDecisionManager` property on the security listener.
108
-
See the https://docs.spring.io/spring-security/site/docs/current/reference/html5/[Spring Security reference documentation] to learn more about decision managers.
109
-
The following example defines a custom access decision manager:
106
+
If your application uses authorities that are not role-based, you need to configure a custom `AuthorizaitonManager`.
107
+
You can override the `AuthorityAuthorizationManager` used by default through
108
+
the `authorizationManagerInitializer` property on the security listener. For example:
0 commit comments