Open
Description
For resource servers, the only method that's actually needed from the AccessTokenRepositoryInterface is isAccessTokenRevoked(). By contrast, isAccessTokenRevoked() isn't actually required for the authorization server side of the house.
Splitting the interface would reduce implementation burden when the resource server is a completely different code base than the auth server, and since interfaces support multiple inheritance BC with the existing interface can be maintained.
Any issues with this change? If not, I'll cook up a PR.