Guest User

Untitled

a guest
Jan 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class Response<T> {
  2.  
  3. T data = null;
  4. @JsonProperty(value="info") // No I18N
  5. Information information = null;
  6.  
  7. public T getData() {
  8. return data;
  9. }
  10. public Information getInformation() {
  11. return information;
  12. }
  13. public void setInformation(Information information) {
  14. this.information = information;
  15. }
  16. public void setData(T data) {
  17. this.data = data;
  18. }}
Add Comment
Please, Sign In to add comment