diff --git a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java index b1bcb800..54c6242c 100644 --- a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java +++ b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java @@ -22,16 +22,16 @@ package org.springframework.security.oauth2.server.authorization; * @author Joe Grandja * @since 0.1.0 * @see OAuth2TokenContext - * @param the type of the context containing the OAuth 2.0 Token attributes + * @param the type of the context containing the OAuth 2.0 Token attributes */ @FunctionalInterface -public interface OAuth2TokenCustomizer { +public interface OAuth2TokenCustomizer { /** * Customize the OAuth 2.0 Token attributes. * * @param context the context containing the OAuth 2.0 Token attributes */ - void customize(C context); + void customize(T context); }