fixed some rogue documentation

pull/708/merge
Justin Richer 2015-05-11 13:03:17 -04:00
parent afad3a720b
commit 8d5c7d6226
2 changed files with 2 additions and 3 deletions

View File

@ -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<String, Object> assembleFrom(OAuth2AccessTokenEntity accessToken, UserInfo userInfo, Set<String> 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<String, Object> assembleFrom(OAuth2RefreshTokenEntity refreshToken, UserInfo userInfo, Set<String> authScopes);

View File

@ -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
*/