Skip to content

Commit

Permalink
Merge branch '1.0.x' into 1.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrandja committed Nov 20, 2023
2 parents 4cb683f + 6544119 commit e3bf93c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2021 the original author or authors.
* Copyright 2020-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -43,11 +43,17 @@
* {@link JdbcOperations} for {@link OAuth2AuthorizationConsent} persistence.
*
* <p>
* <b>NOTE:</b> This {@code OAuth2AuthorizationConsentService} depends on the table definition
* <b>IMPORTANT:</b> This {@code OAuth2AuthorizationConsentService} depends on the table definition
* described in
* "classpath:org/springframework/security/oauth2/server/authorization/oauth2-authorization-consent-schema.sql" and
* therefore MUST be defined in the database schema.
*
* <p>
* <b>NOTE:</b> This {@code OAuth2AuthorizationConsentService} is a simplified JDBC implementation that MAY be used in a production environment.
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
* The expectation is that the consuming application will provide their own implementation of {@code OAuth2AuthorizationConsentService}
* that meets the performance requirements for its deployment environment.
*
* @author Ovidiu Popa
* @since 0.1.2
* @see OAuth2AuthorizationConsentService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,17 @@
* {@link JdbcOperations} for {@link OAuth2Authorization} persistence.
*
* <p>
* <b>NOTE:</b> This {@code OAuth2AuthorizationService} depends on the table definition
* <b>IMPORTANT:</b> This {@code OAuth2AuthorizationService} depends on the table definition
* described in
* "classpath:org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql" and
* therefore MUST be defined in the database schema.
*
* <p>
* <b>NOTE:</b> This {@code OAuth2AuthorizationService} is a simplified JDBC implementation that MAY be used in a production environment.
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
* The expectation is that the consuming application will provide their own implementation of {@code OAuth2AuthorizationService}
* that meets the performance requirements for its deployment environment.
*
* @author Ovidiu Popa
* @author Joe Grandja
* @since 0.1.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,16 @@
* {@link JdbcOperations} for {@link RegisteredClient} persistence.
*
* <p>
* <b>NOTE:</b> This {@code RegisteredClientRepository} depends on the table definition described in
* <b>IMPORTANT:</b> This {@code RegisteredClientRepository} depends on the table definition described in
* "classpath:org/springframework/security/oauth2/server/authorization/client/oauth2-registered-client-schema.sql" and
* therefore MUST be defined in the database schema.
*
* <p>
* <b>NOTE:</b> This {@code RegisteredClientRepository} is a simplified JDBC implementation that MAY be used in a production environment.
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
* The expectation is that the consuming application will provide their own implementation of {@code RegisteredClientRepository}
* that meets the performance requirements for its deployment environment.
*
* @author Rafal Lewczuk
* @author Joe Grandja
* @author Ovidiu Popa
Expand Down

0 comments on commit e3bf93c

Please sign in to comment.