default void |
AccessGrantManager.deleteGrant(String accessGrantGuid) |
Deletes an access grant that has been previously issued.
|
default AccessGrant |
AccessGrantManager.getByAccessGrantCriteria(AccessGrantCriteria accessGrantCriteria) |
Retrieves an access grant based on several specific criteria specified in the params.
|
Collection<AccessGrant> |
AccessGrantManager.getByClientId(String clientId) |
Retrieves a collection of access grants based on the client id.
|
AccessGrant |
AccessGrantManager.getByGuid(String accessGrantGuid) |
Retrieves an AccessGrant by its guid.
|
AccessGrant |
AccessGrantManager.getByRefreshToken(String refreshTokenValue) |
Retrieves an AccessGrant by its refresh token value.
|
Collection<AccessGrant> |
AccessGrantManager.getByUserKey(String userKey) |
Retrieves an access grant based on the user key, which is the unique user identifier.
|
default Collection<AccessGrant> |
AccessGrantManager.getByUserKeyClientIdGrantType(String userKey,
String clientId,
String grantType) |
Retrieves a collection of access grants based on several specific criteria specified in the params.
|
AccessGrant |
AccessGrantManager.getByUserKeyScopeClientIdGrantTypeContext(String userKey,
Scope scope,
String clientId,
String grantType,
String contextQualifier) |
Retrieves an access grant based on several specific criteria specified in the params.
|
AccessGrantAttributesHolder |
AccessGrantManager.getGrantAttributes(String accessGrantGuid) |
Retrieve the access grant attributes for the specified access grant guid.
|
void |
AccessGrantManager.revokeGrant(String accessGrantGuid) |
Revokes an access grant that has been previously issued.
|
void |
AccessGrantManager.revokeGrant(String userKey,
String accessGrantGuid) |
Revokes an access grant that has been previously issued.
|
void |
AccessGrantManager.saveGrant(AccessGrant accessGrant,
AccessGrantAttributesHolder attrHolder) |
Saves the access grant to the underlying storage mechanism.
|
default void |
AccessGrantManager.updateExpiry(AccessGrant accessGrant) |
Update the expiry time of the specified access grant.
|
void |
AccessGrantManager.updateGrantAttributes(String accessGrantGuid,
AccessGrantAttributesHolder attrHolder) |
Updates the access grant attributes with the specified attributes.
|
void |
AccessGrantManager.updateRefreshToken(AccessGrant accessGrant) |
Update the refresh token of the specified access grant.
|