You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/authentication/OAuth2AuthorizationCodeAuthenticationProvider.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -282,7 +282,7 @@ public boolean supports(Class<?> authentication) {
282
282
* Sets the {@link SessionRegistry} used to track OpenID Connect sessions.
283
283
*
284
284
* @param sessionRegistry the {@link SessionRegistry} used to track OpenID Connect sessions
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/client/RegisteredClient.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ public Set<String> getRedirectUris() {
152
152
* that the End-User's User Agent be redirected to after a logout has been performed.
153
153
*
154
154
* @return the {@code Set} of post logout redirect URI(s)
155
-
* @since 1.1.0
155
+
* @since 1.1
156
156
*/
157
157
publicSet<String> getPostLogoutRedirectUris() {
158
158
returnthis.postLogoutRedirectUris;
@@ -447,7 +447,7 @@ public Builder redirectUris(Consumer<Set<String>> redirectUrisConsumer) {
447
447
*
448
448
* @param postLogoutRedirectUri the post logout redirect URI
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/config/annotation/web/configurers/OAuth2AuthorizationServerConfigurer.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/config/annotation/web/configurers/OAuth2ConfigurerUtils.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/config/annotation/web/configurers/OAuth2TokenEndpointConfigurer.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/config/annotation/web/configurers/OidcConfigurer.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public OidcConfigurer providerConfigurationEndpoint(Customizer<OidcProviderConfi
72
72
*
73
73
* @param logoutEndpointCustomizer the {@link Customizer} providing access to the {@link OidcLogoutEndpointConfigurer}
74
74
* @return the {@link OidcConfigurer} for further configuration
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/config/annotation/web/configurers/OidcLogoutEndpointConfigurer.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcClientMetadataClaimAccessor.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcClientMetadataClaimNames.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ public final class OidcClientMetadataClaimNames {
66
66
* {@code post_logout_redirect_uris} - the post logout redirection {@code URI} values used by the Client.
67
67
* The {@code post_logout_redirect_uri} parameter is used by the client when requesting
68
68
* that the End-User's User Agent be redirected to after a logout has been performed.
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcClientRegistration.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@ public Builder redirectUris(Consumer<List<String>> redirectUrisConsumer) {
176
176
*
177
177
* @param postLogoutRedirectUri the post logout redirection {@code URI} used by the Client
178
178
* @return the {@link Builder} for further configuration
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcProviderConfiguration.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ public Builder userInfoEndpoint(String userInfoEndpoint) {
136
136
*
137
137
* @param endSessionEndpoint the {@code URL} of the OpenID Connect 1.0 End Session Endpoint
138
138
* @return the {@link Builder} for further configuration
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcProviderMetadataClaimAccessor.java
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/OidcProviderMetadataClaimNames.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ public final class OidcProviderMetadataClaimNames extends OAuth2AuthorizationSer
49
49
50
50
/**
51
51
* {@code end_session_endpoint} - the {@code URL} of the OpenID Connect 1.0 End Session Endpoint
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/oidc/authentication/OidcLogoutAuthenticationProvider.java
+21-15Lines changed: 21 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@
46
46
* An {@link AuthenticationProvider} implementation for OpenID Connect 1.0 RP-Initiated Logout Endpoint.
47
47
*
48
48
* @author Joe Grandja
49
-
* @since 1.1.0
49
+
* @since 1.1
50
50
* @see RegisteredClientRepository
51
51
* @see OAuth2AuthorizationService
52
52
* @see SessionRegistry
@@ -83,7 +83,7 @@ public Authentication authenticate(Authentication authentication) throws Authent
0 commit comments