|
@@ -377,6 +377,15 @@ public class ServerHttpSecurity {
|
|
return this;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Allows method chaining to continue configuring the {@link ServerHttpSecurity}
|
|
|
|
+ * @return the {@link ServerHttpSecurity} to continue configuring
|
|
|
|
+ */
|
|
|
|
+ public ServerHttpSecurity and() {
|
|
|
|
+ return ServerHttpSecurity.this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
protected void configure(ServerHttpSecurity http) {
|
|
protected void configure(ServerHttpSecurity http) {
|
|
ReactiveClientRegistrationRepository clientRegistrationRepository = getClientRegistrationRepository();
|
|
ReactiveClientRegistrationRepository clientRegistrationRepository = getClientRegistrationRepository();
|
|
ReactiveOAuth2AuthorizedClientService authorizedClientService = getAuthorizedClientService();
|
|
ReactiveOAuth2AuthorizedClientService authorizedClientService = getAuthorizedClientService();
|