Skip to content

Instantly share code, notes, and snippets.

@dhanji
Last active December 11, 2015 01:18
Show Gist options
  • Save dhanji/4522241 to your computer and use it in GitHub Desktop.
Save dhanji/4522241 to your computer and use it in GitHub Desktop.
@At("/person") @Service
public class PersonService {
@Get
@As(Json.class) Reply<List<Person>> getRelatives(@As(Json.class) Person p) {
return Reply.with(relativesOf(p));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment