Skip to content

Commit 298b77d

Browse files
committed
Polish OAuth2TokenCustomizer
1 parent fc406bc commit 298b77d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
* @author Joe Grandja
2323
* @since 0.1.0
2424
* @see OAuth2TokenContext
25-
* @param <C> the type of the context containing the OAuth 2.0 Token attributes
25+
* @param <T> the type of the context containing the OAuth 2.0 Token attributes
2626
*/
2727
@FunctionalInterface
28-
public interface OAuth2TokenCustomizer<C extends OAuth2TokenContext> {
28+
public interface OAuth2TokenCustomizer<T extends OAuth2TokenContext> {
2929

3030
/**
3131
* Customize the OAuth 2.0 Token attributes.
3232
*
3333
* @param context the context containing the OAuth 2.0 Token attributes
3434
*/
35-
void customize(C context);
35+
void customize(T context);
3636

3737
}

0 commit comments

Comments
 (0)