We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09e9f1 commit ceab56fCopy full SHA for ceab56f
config/src/main/java/org/springframework/security/config/annotation/rsocket/RSocketSecurity.java
@@ -104,6 +104,7 @@
104
* }
105
* </pre>
106
* @author Rob Winch
107
+ * @author Jesús Ascama Arias
108
* @since 5.2
109
*/
110
public class RSocketSecurity {
@@ -282,7 +283,7 @@ public Access anyExchange() {
282
283
284
protected AuthorizationPayloadInterceptor build() {
285
AuthorizationPayloadInterceptor result = new AuthorizationPayloadInterceptor(this.authzBuilder.build());
- result.setOrder(PayloadInterceptorOrder.AUTHENTICATION.getOrder());
286
+ result.setOrder(PayloadInterceptorOrder.AUTHORIZATION.getOrder());
287
return result;
288
}
289
0 commit comments