Main entry point into the Revoke service.
Bases: keystone.common.manager.Manager
Default pivot point for the Revoke backend.
Performs common logic for recording revocations.
See keystone.common.manager.Manager for more details on how this dynamically calls the backend.
Checks the values from a token against the revocation list
Parameters: | token_values – dictionary of values from a token, normalized for differences between v2 and v3. The checked values are a subset of the attributes of model.TokenEvent |
---|---|
Raises keystone.exception.TokenNotFound: | |
If the token is invalid. |
Bases: object
Interface for recording and reporting revocation events.
return the revocation events, as a list of objects
Parameters: | last_fetch – Time of last fetch. Return all events newer. |
---|---|
Returns: | A list of keystone.revoke.model.RevokeEvent newer than last_fetch. If no last_fetch is specified, returns all events for tokens issued after the expiration cutoff. |