Skip to content

Instantly share code, notes, and snippets.

@claymccoy
Created August 30, 2017 02:19
Show Gist options
  • Save claymccoy/8f5f1dd5b2f4caa0f38f480b737d1d5b to your computer and use it in GitHub Desktop.
Save claymccoy/8f5f1dd5b2f4caa0f38f480b737d1d5b to your computer and use it in GitHub Desktop.
public class AdditionResponse {
@JsonProperty private final int addend, addend2;
public AdditionResponse(int addend, int addend2) {
this.addend = addend;
this.addend2 = addend2;
}
public int getSum() {
return addend + addend2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment