fixed some rogue documentation
parent
afad3a720b
commit
8d5c7d6226
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue