Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created February 10, 2015 03:52
Show Gist options
  • Select an option

  • Save javaeeeee/29676d8b6548083e3ba1 to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/29676d8b6548083e3ba1 to your computer and use it in GitHub Desktop.
Dropwizard Authenticator Registration
@Override
public void run(final DWGettingStartedConfiguration configuration,
final Environment environment) {
environment.jersey().register(AuthFactory.binder(
new BasicAuthFactory<>(
new GreetingAuthenticator(),
"SECURITY REALM",
User.class)));
// Resources are registered here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment