Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save javaeeeee/e1851dd16112bfdd9f8a to your computer and use it in GitHub Desktop.
Dropwizard Secured Resource
@Path("secured_hello")
public class SecuredHelloResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getGreeting(@Auth User user) {
return "Hello world!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment