int |
OAuthStore.countTokens(java.lang.String providerId,
java.lang.String username,
java.lang.String clientId) |
Counts the OAuthToken entries matching the given providerId, username, and clientId arguments in the store.
|
void |
OAuthStore.create(OAuthClient oauthClient) |
|
void |
OAuthStore.create(OAuthConsent oauthConsent) |
|
void |
OAuthStore.create(OAuthToken oauthToken) |
|
void |
OAuthStore.deleteClient(java.lang.String providerId,
java.lang.String clientId) |
Deletes an OAuthClient entry matching the providerId and clientId arguments from the store.
|
void |
OAuthStore.deleteConsent(java.lang.String providerId,
java.lang.String username,
java.lang.String clientId,
java.lang.String resource) |
Deletes an OAuthConsent entry matching the providerId, username, and clientId arguments from the store.
|
void |
OAuthStore.deleteConsents(java.lang.String providerId,
long timestamp) |
Deletes the OAuthConsent entries for the providerId from the store whose expiration fields are less than the given timestamp argument.
|
void |
OAuthStore.deleteToken(java.lang.String providerId,
java.lang.String lookupKey) |
Deletes an OAuthToken entry matching the providerId and lookupKey arguments from the store.
|
void |
OAuthStore.deleteTokens(java.lang.String providerId,
long timestamp) |
Deletes the OAuthToken entries for the providerId from the store whose expiration fields are less than the given timestamp argument.
|
java.util.Collection<OAuthClient> |
OAuthStore.readAllClients(java.lang.String providerId,
java.lang.String attribute) |
Reads all the OAuthClient entries matching the given providerId and attribute arguments from the store.
|
java.util.Collection<OAuthToken> |
OAuthStore.readAllTokens(java.lang.String providerId,
java.lang.String username) |
Reads all the OAuthToken entries matching the given providerId and username arguments from the store.
|
OAuthClient |
OAuthStore.readClient(java.lang.String providerId,
java.lang.String clientId) |
Reads the OAuthClient entry matching the given providerId and clientId arguments from the store.
|
OAuthConsent |
OAuthStore.readConsent(java.lang.String providerId,
java.lang.String username,
java.lang.String clientId,
java.lang.String resource) |
Reads the OAuthConsent entry matching the given providerId, username, clientId, and resource arguments from the store.
|
OAuthToken |
OAuthStore.readToken(java.lang.String providerId,
java.lang.String lookupKey) |
Reads the OAuthToken entry matching the given the providerId and lookupKey arguments from the store.
|
void |
OAuthStore.update(OAuthClient oauthClient) |
|
void |
OAuthStore.update(OAuthConsent oauthConsent) |
|
void |
OAuthStore.update(OAuthToken oauthToken) |
|