Advertisement
Guest User

Untitled

a guest
Nov 9th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1.     @POST
  2.     @Consumes(MediaType.APPLICATION_JSON)
  3.     public Response postReport(Report report) {
  4.         reports.add(report);
  5.        
  6.         return Response.created(URI.create("/" +report.getId())).build();
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement