Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 24, 2015 08:58
Show Gist options
  • Select an option

  • Save javaeeeee/1282ec54e92cb3084027 to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/1282ec54e92cb3084027 to your computer and use it in GitHub Desktop.
A simple Dropwizard representation class
public class Greeting {
@JsonProperty
private String greeting;
public Greeting() {
}
public Greeting(String greeting) {
this.greeting = greeting;
}
public String getGreeting() {
return greeting;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment