/** {@inheritDoc} */
 public Set<String> validateAccessTokenScope(
     ClientRegistration clientRegistration, Set<String> scope, OAuth2Request request)
     throws ServerException, InvalidScopeException {
   return scopeValidator.scopeRequestedForAccessToken(
       scope, clientRegistration.getAllowedScopes(), clientRegistration.getDefaultScopes());
 }