Uses of Class
com.ibm.websphere.security.oauth20.store.OAuthStoreException
Packages that use OAuthStoreException
-
Uses of OAuthStoreException in com.ibm.websphere.security.oauth20.store
Methods in com.ibm.websphere.security.oauth20.store that throw OAuthStoreExceptionModifier and TypeMethodDescriptionintOAuthStore.countTokens(String providerId, String username, String clientId) Counts theOAuthTokenentries matching the given providerId, username, and clientId arguments in the store.voidOAuthStore.create(OAuthClient oauthClient) Creates anOAuthCliententry in the store.voidOAuthStore.create(OAuthConsent oauthConsent) Creates anOAuthConsententry in the store.voidOAuthStore.create(OAuthToken oauthToken) Creates anOAuthTokenentry in the store.voidOAuthStore.deleteClient(String providerId, String clientId) Deletes anOAuthCliententry matching the providerId and clientId arguments from the store.voidOAuthStore.deleteConsent(String providerId, String username, String clientId, String resource) Deletes anOAuthConsententry matching the providerId, username, and clientId arguments from the store.voidOAuthStore.deleteConsents(String providerId, long timestamp) Deletes theOAuthConsententries for the providerId from the store whose expiration fields are less than the given timestamp argument.voidOAuthStore.deleteToken(String providerId, String lookupKey) Deletes anOAuthTokenentry matching the providerId and lookupKey arguments from the store.voidOAuthStore.deleteTokens(String providerId, long timestamp) Deletes theOAuthTokenentries for the providerId from the store whose expiration fields are less than the given timestamp argument.OAuthStore.readAllClients(String providerId, String attribute) Reads all theOAuthCliententries matching the given providerId and attribute arguments from the store.OAuthStore.readAllTokens(String providerId, String username) Reads all theOAuthTokenentries matching the given providerId and username arguments from the store.OAuthStore.readClient(String providerId, String clientId) Reads theOAuthCliententry matching the given providerId and clientId arguments from the store.OAuthStore.readConsent(String providerId, String username, String clientId, String resource) Reads theOAuthConsententry matching the given providerId, username, clientId, and resource arguments from the store.Reads theOAuthTokenentry matching the given the providerId and lookupKey arguments from the store.voidOAuthStore.update(OAuthClient oauthClient) Updates anOAuthCliententry in the store.voidOAuthStore.update(OAuthConsent oauthConsent) Updates anOAuthConsententry in the store.voidOAuthStore.update(OAuthToken oauthToken) Updates anOAuthTokenentry in the store.