Skip to content

Commit b4b97e3

Browse files
committed
Update security section of reference docs
Closes gh-1806
1 parent 3f0234c commit b4b97e3

File tree

1 file changed

+26
-12
lines changed

1 file changed

+26
-12
lines changed

src/docs/asciidoc/flow-security.adoc

+26-12
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The attributes are compared against the user's granted attributes by a Spring Se
5353
----
5454
====
5555

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.
5757
This needs to be overridden if your application is not using authorization roles.
5858

5959
[[_flow_security_secured_element_match]]
@@ -100,24 +100,38 @@ This exception is later caught by Spring Security and used to prompt the user to
100100
It is important that this exception be allowed to travel up the execution stack uninhibited.
101101
Otherwise, the end user may not be prompted to authenticate.
102102

103-
[[_flow_security_listener_adm]]
104-
==== Custom Access Decision Managers
103+
[[_flow_security_listener_am]]
104+
==== Custom Authorization Managers
105105

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:
110109

111110
====
112-
[source,xml]
111+
[source,java]
113112
----
114-
<bean id="securityFlowExecutionListener"
115-
class="org.springframework.webflow.security.SecurityFlowExecutionListener">
116-
<property name="accessDecisionManager" ref="myCustomAccessDecisionManager" />
117-
</bean>
113+
@Bean
114+
SecurityFlowExecutionListener securityFlowExecutionListener() {
115+
SecurityFlowExecutionListener listener = new SecurityFlowExecutionListener();
116+
listener.setAuthorizationManagerInitializer(securityRule -> {
117+
// ...
118+
});
119+
return listener;
120+
}
118121
----
119122
====
120123

124+
[[_flow_security_listener_adm]]
125+
==== Custom Access Decision Managers
126+
127+
Spring Security's `AccessDecisionManager` is deprecated and will be removed in a future version.
128+
Therefore, it is recommended to configure an `AuthorizationManager` instead.
129+
However, if you must use an `AccessDecisionManager`, you can either set the `accessDecisionManager` property of the security listener,
130+
or override the `createAccessDecisionManager(SecurityRule)` protected method.
131+
132+
To learn more about Spring Security's `AuthorizationManager` API, see
133+
https://docs.spring.io/spring-security/reference/servlet/authorization/architecture.html#_the_authorizationmanager[Spring Security reference documentation].
134+
121135
[[_flow_security_configuration]]
122136
=== Configuring Spring Security
123137

0 commit comments

Comments
 (0)