From bfce6e438d39ca1e87c440ed0b6a23aa5e64c17f Mon Sep 17 00:00:00 2001 From: Pat McCusker Date: Tue, 18 Feb 2025 14:17:11 -0500 Subject: [PATCH] Add fourth oauth grant type to javadoc Signed-off-by: Pat McCusker --- .../security/oauth2/core/AuthorizationGrantType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/AuthorizationGrantType.java b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/AuthorizationGrantType.java index e1321bd759..c914045202 100644 --- a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/AuthorizationGrantType.java +++ b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/AuthorizationGrantType.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; * *

* The OAuth 2.0 Authorization Framework defines four standard grant types: authorization - * code, resource owner password credentials, and client credentials. It also provides an + * code, implicit, resource owner password credentials, and client credentials. It also provides an * extensibility mechanism for defining additional grant types. * * @author Joe Grandja