Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. @GET
  2. @Produces({MediaType.APPLICATION_JSON})
  3. @Path("/{activityLocator}/item/{itemUid}")
  4. @Override
  5. public Obj getItemWidgetParams(
  6. @PathParam("activityLocator")
  7. String activityLocator,
  8. @PathParam("itemUid")
  9. String itemUid,
  10. @QueryParam("options")
  11. ItemWidgetInitOptions options,
  12. @QueryParam("mode")
  13. String mode) throws Exception
  14. {
  15. return something;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement