Guest User

Untitled

a guest
Jan 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. "person":{"first_name":"John", "last_name":"Smith"},
  3. "pets":[{"species":"dog", "name":"Adama"}, {"species":"cat", "name":"Benton"} ],
  4. "toys":[{"car":"corvet", "color":"black"}, {"action_figure":"hancock", "height":"1ft"} ]
  5. }
  6.  
  7. @Post
  8. public Representation readForm(Representation representation) {
  9. try {
  10. Person aPerson = …
  11. Set<Pet> petSet = …
  12. Set<Toy> toySet = ...
  13.  
  14. ….
Add Comment
Please, Sign In to add comment