Skip to content

Instantly share code, notes, and snippets.

@extrawurst
Last active October 25, 2018 09:33
Show Gist options
  • Save extrawurst/7fbb62d0d02dac4f1055299a12868f8f to your computer and use it in GitHub Desktop.
Save extrawurst/7fbb62d0d02dac4f1055299a12868f8f to your computer and use it in GitHub Desktop.
@Path("/settings")
public class RestResource {
...
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getGlobalSettings() {
validate(() -> validationService.validateForGlobal(Permission.ADMIN));
return Response.ok(getDTOFromGlobalSettings(globalSettingsService)).build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment