Skip to content

Instantly share code, notes, and snippets.

@eldermoraes
Created April 4, 2019 15:22
Show Gist options
  • Save eldermoraes/13806187272590df397ba408b0f25140 to your computer and use it in GitHub Desktop.
Save eldermoraes/13806187272590df397ba408b0f25140 to your computer and use it in GitHub Desktop.
@Timed(name = "getEvents_timed")
@GET
@Produces(MediaType.APPLICATION_JSON)
public JsonObject getEventList(){
String response = theDevConfAPI.getEventList();
return JSON.createObjectBuilder()
.add("message", response)
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment