Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @GET
  2. public Response processRequest( @QueryParam("id")String id, @QueryParam("userId")String userId ) {
  3. Record retrieve = database.retrieveRecord(id);
  4. logger.writeEntryFor( id, userId );
  5. UserProfile profile = userStore.retrieve(userId);
  6. generateAdResponse(retrieve, profile);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement