@ -494,7 +494,7 @@ then you can configure the scope using the `accessToken()` method:
@@ -494,7 +494,7 @@ then you can configure the scope using the `accessToken()` method:
@ -571,8 +571,6 @@ And the resulting `Jwt`, were it tested, would pass in the following way:
@@ -571,8 +571,6 @@ And the resulting `Jwt`, were it tested, would pass in the following way:
@ -600,7 +598,7 @@ However, this can be overridden simply by providing the list of `GrantedAuthorit
@@ -600,7 +598,7 @@ However, this can be overridden simply by providing the list of `GrantedAuthorit
@ -609,7 +607,7 @@ Or, if you have a custom `Jwt` to `Collection<GrantedAuthority>` converter, you
@@ -609,7 +607,7 @@ Or, if you have a custom `Jwt` to `Collection<GrantedAuthority>` converter, you
@ -620,7 +618,8 @@ You can also specify a complete `Jwt`, for which `{security-api-url}org/springfr
@@ -620,7 +618,8 @@ You can also specify a complete `Jwt`, for which `{security-api-url}org/springfr
JwtAuthenticationToken token = new JwtAuthenticationToken(jwt, authorities);
client
.mutateWith(authentication(token))
.mutateWith(mockAuthentication(token))
.get().uri("/endpoint").exchange();
----
@ -660,7 +659,7 @@ Let's say that we've got a controller that retrieves the authentication as a `Be
@@ -660,7 +659,7 @@ Let's say that we've got a controller that retrieves the authentication as a `Be
----
@GetMapping("/endpoint")
public Mono<String> foo(BearerTokenAuthentication authentication) {