Skip to content

Commit f1b79e0

Browse files
author
Steve Riesenberg
committed
Merge branch '5.8.x'
2 parents 3eac274 + 6b297cc commit f1b79e0

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

config/src/main/kotlin/org/springframework/security/config/annotation/web/OAuth2LoginDsl.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ class OAuth2LoginDsl {
131131
* @EnableWebSecurity
132132
* class SecurityConfig {
133133
*
134-
* @Bean
135-
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
134+
* @Bean
135+
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
136136
* http {
137137
* oauth2Login {
138138
* tokenEndpoint {
@@ -141,7 +141,7 @@ class OAuth2LoginDsl {
141141
* }
142142
* }
143143
* return http.build()
144-
* }
144+
* }
145145
* }
146146
* ```
147147
*
@@ -163,8 +163,8 @@ class OAuth2LoginDsl {
163163
* @EnableWebSecurity
164164
* class SecurityConfig {
165165
*
166-
* @Bean
167-
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
166+
* @Bean
167+
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
168168
* http {
169169
* oauth2Login {
170170
* redirectionEndpoint {
@@ -173,7 +173,7 @@ class OAuth2LoginDsl {
173173
* }
174174
* }
175175
* return http.build()
176-
* }
176+
* }
177177
* }
178178
* ```
179179
*
@@ -195,8 +195,8 @@ class OAuth2LoginDsl {
195195
* @EnableWebSecurity
196196
* class SecurityConfig {
197197
*
198-
* @Bean
199-
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
198+
* @Bean
199+
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
200200
* http {
201201
* oauth2Login {
202202
* userInfoEndpoint {
@@ -205,7 +205,7 @@ class OAuth2LoginDsl {
205205
* }
206206
* }
207207
* return http.build()
208-
* }
208+
* }
209209
* }
210210
* ```
211211
*

config/src/main/kotlin/org/springframework/security/config/annotation/web/SessionManagementDsl.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ class SessionManagementDsl {
5454
* @EnableWebSecurity
5555
* class SecurityConfig {
5656
*
57-
* @Bean
58-
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
57+
* @Bean
58+
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
5959
* http {
6060
* sessionManagement {
6161
* sessionFixation { }
6262
* }
6363
* }
6464
* return http.build()
65-
* }
65+
* }
6666
* }
6767
* ```
6868
*
@@ -84,8 +84,8 @@ class SessionManagementDsl {
8484
* @EnableWebSecurity
8585
* class SecurityConfig {
8686
*
87-
* @Bean
88-
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
87+
* @Bean
88+
* fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
8989
* http {
9090
* sessionManagement {
9191
* sessionConcurrency {
@@ -95,7 +95,7 @@ class SessionManagementDsl {
9595
* }
9696
* }
9797
* return http.build()
98-
* }
98+
* }
9999
* }
100100
* ```
101101
*

0 commit comments

Comments
 (0)