/src/main/java/net/jeremybrooks/jinx/response/groups/discuss/replies/Reply.java

http://github.com/jeremybrooks/jinx · Java · 123 lines · 86 code · 18 blank · 19 comment · 1 complexity · 287dc6dbdf11887d7a4ec111efc57c2b MD5 · raw file

  1. /*
  2. * Jinx is Copyright 2010-2020 by Jeremy Brooks and Contributors
  3. *
  4. * Jinx is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * Jinx is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with Jinx. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package net.jeremybrooks.jinx.response.groups.discuss.replies;
  18. import com.google.gson.annotations.SerializedName;
  19. import net.jeremybrooks.jinx.JinxUtils;
  20. import java.io.Serializable;
  21. /**
  22. * Created by jeremyb on 7/9/14.
  23. */
  24. public class Reply implements Serializable {
  25. private static final long serialVersionUID = -4731112946229974791L;
  26. @SerializedName("id")
  27. private String replyId;
  28. private _Message message;
  29. private String author;
  30. @SerializedName("authorname")
  31. private String authorName;
  32. @SerializedName("is_pro")
  33. private String isPro; // return as Boolean
  34. private String role;
  35. @SerializedName("iconserver")
  36. private String iconServer;
  37. @SerializedName("iconfarm")
  38. private String iconFarm;
  39. @SerializedName("can_edit")
  40. private String canEdit; // return as Boolean
  41. @SerializedName("can_delete")
  42. private String canDelete; // return as Boolean
  43. @SerializedName("datecreate")
  44. private String dateCreate;
  45. @SerializedName("lastedit")
  46. private String lastEdit;
  47. public String getReplyId() {
  48. return replyId;
  49. }
  50. public String getMessage() {
  51. return message == null ? null : message._content;
  52. }
  53. public String getAuthor() {
  54. return author;
  55. }
  56. public String getAuthorName() {
  57. return authorName;
  58. }
  59. public Boolean isPro() {
  60. return JinxUtils.flickrBooleanToBoolean(isPro);
  61. }
  62. public String getRole() {
  63. return role;
  64. }
  65. public String getIconServer() {
  66. return iconServer;
  67. }
  68. public String getIconFarm() {
  69. return iconFarm;
  70. }
  71. public Boolean isCanEdit() {
  72. return JinxUtils.flickrBooleanToBoolean(canEdit);
  73. }
  74. public Boolean isCanDelete() {
  75. return JinxUtils.flickrBooleanToBoolean(canDelete);
  76. }
  77. public String getDateCreate() {
  78. return dateCreate;
  79. }
  80. public String getLastEdit() {
  81. return lastEdit;
  82. }
  83. private class _Message implements Serializable {
  84. private static final long serialVersionUID = -3352327954127915076L;
  85. private String _content;
  86. }
  87. @Override
  88. public String toString() {
  89. final StringBuilder sb = new StringBuilder("Reply{");
  90. sb.append("replyId='").append(replyId).append('\'');
  91. sb.append(", message='").append(getMessage()).append('\'');
  92. sb.append(", author='").append(author).append('\'');
  93. sb.append(", authorName='").append(authorName).append('\'');
  94. sb.append(", isPro='").append(isPro()).append('\'');
  95. sb.append(", role='").append(role).append('\'');
  96. sb.append(", iconServer='").append(iconServer).append('\'');
  97. sb.append(", iconFarm='").append(iconFarm).append('\'');
  98. sb.append(", canEdit='").append(isCanEdit()).append('\'');
  99. sb.append(", canDelete='").append(isCanDelete()).append('\'');
  100. sb.append(", dateCreate='").append(dateCreate).append('\'');
  101. sb.append(", lastEdit='").append(lastEdit).append('\'');
  102. sb.append('}');
  103. return sb.toString();
  104. }
  105. }