diff --git a/openid-connect-common/src/main/java/org/mitre/oauth2/service/IntrospectionResultAssembler.java b/openid-connect-common/src/main/java/org/mitre/oauth2/service/IntrospectionResultAssembler.java index c4bc519b5..70d1c6710 100644 --- a/openid-connect-common/src/main/java/org/mitre/oauth2/service/IntrospectionResultAssembler.java +++ b/openid-connect-common/src/main/java/org/mitre/oauth2/service/IntrospectionResultAssembler.java @@ -47,7 +47,7 @@ public interface IntrospectionResultAssembler { * * @param accessToken the access token * @param userInfo the user info - * @param authScopes TODO + * @param authScopes the scopes the client is authorized for * @return the token introspection result */ Map assembleFrom(OAuth2AccessTokenEntity accessToken, UserInfo userInfo, Set authScopes); @@ -57,7 +57,7 @@ public interface IntrospectionResultAssembler { * * @param refreshToken the refresh token * @param userInfo the user info - * @param authScopes TODO + * @param authScopes the scopes the client is authorized for * @return the token introspection result */ Map assembleFrom(OAuth2RefreshTokenEntity refreshToken, UserInfo userInfo, Set authScopes); diff --git a/openid-connect-server/src/main/java/org/mitre/oauth2/web/AuthenticationUtilities.java b/openid-connect-server/src/main/java/org/mitre/oauth2/web/AuthenticationUtilities.java index 1b8c0098e..a9d588e12 100644 --- a/openid-connect-server/src/main/java/org/mitre/oauth2/web/AuthenticationUtilities.java +++ b/openid-connect-server/src/main/java/org/mitre/oauth2/web/AuthenticationUtilities.java @@ -36,7 +36,6 @@ public abstract class AuthenticationUtilities { /** * Makes sure the authentication contains the given scope, throws an exception otherwise * @param auth the authentication object to check - * @param scope TODO * @param scope the scope to look for * @throws InsufficientScopeException if the authentication does not contain that scope */