Skip to content

Instantly share code, notes, and snippets.

@jpbetz
Created February 10, 2013 07:09
Show Gist options
  • Save jpbetz/4748717 to your computer and use it in GitHub Desktop.
Save jpbetz/4748717 to your computer and use it in GitHub Desktop.
@RestLiCollection(name = "greetings")
class GreetingsResource extends CollectionResourceTemplate<Long, Message> {
public Greeting get(Long key) {
return new Greeting().setMessage("Good morning!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment