io.dropwizard.bundles.apikey.ApiKeyProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-api-key-bundle Show documentation
Show all versions of dropwizard-api-key-bundle Show documentation
Dropwizard bundle that allows your application to support API keys.
package io.dropwizard.bundles.apikey;
public interface ApiKeyProvider {
/**
* Provide the API key for the specified user.
*/
ApiKey get(String username);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy