All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dropwizard.bundles.apikey.ApiKeyBundle Maven / Gradle / Ivy

package io.dropwizard.bundles.apikey;

import java.security.Principal;

/**
 * The ApiKeyBundle class provides the base implementation of the API key-based
 * authentication, providing a simple Principal implementation and no authorization logic (permit
 * all).
 */
public class ApiKeyBundle
    extends PrincipalApiKeyBundle {
  public ApiKeyBundle() {
    super(Principal.class, new DefaultPrincipalFactory());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy