Skip to content

Commit

Permalink
feat(apikey): Add a new service to delete an API Key
Browse files Browse the repository at this point in the history
  • Loading branch information
brasseld committed Jan 11, 2016
1 parent 1cf64d0 commit fd866aa
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,12 @@ public interface ApiKeyRepository {
* @throws TechnicalException
*/
Set<ApiKey> findByApi(String apiId) throws TechnicalException;

/**
* Delete an API Key
*
* @param apiKey The API Key to delete
* @throws TechnicalException
*/
void delete(String apiKey) throws TechnicalException;
}

0 comments on commit fd866aa

Please sign in to comment.