/core/src/main/java/com/pc/dailymile/domain/Like.java

http://dailymile-client.googlecode.com/ · Java · 98 lines · 55 code · 15 blank · 28 comment · 9 complexity · eb564e816cb5b4cdf6ccf64f6cf9cf06 MD5 · raw file

  1. /*
  2. Copyright 2010 platers.code
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package com.pc.dailymile.domain;
  14. import java.io.Serializable;
  15. import java.util.Date;
  16. import org.apache.commons.lang.builder.EqualsBuilder;
  17. import org.apache.commons.lang.builder.HashCodeBuilder;
  18. import org.apache.commons.lang.builder.ToStringBuilder;
  19. import com.google.gson.annotations.SerializedName;
  20. /*
  21. *
  22. * {"created_at":"2012-04-12T04:36:17Z",
  23. * "user":{"username":"jplaterTest",
  24. * "display_name":"Joey",
  25. * "photo_url":"http://s2.dmimg.com/pictures/users/54006/1329982339_avatar.jpg",
  26. * "url":"http://www.dailymile.com/people/jplaterTest"
  27. * }
  28. * }]
  29. *
  30. */
  31. public class Like implements Comparable<Like>, Serializable {
  32. private User user;
  33. @SerializedName("created_at")
  34. private Date date;
  35. public Like() {
  36. }
  37. public User getUser() {
  38. return user;
  39. }
  40. public void setUser(User user) {
  41. this.user = user;
  42. }
  43. public Date getDate() {
  44. return date;
  45. }
  46. public void setDate(Date date) {
  47. this.date = date;
  48. }
  49. @Override
  50. public String toString() {
  51. return new ToStringBuilder(this).append("date", date).append("user", user).toString();
  52. }
  53. @Override
  54. public int hashCode() {
  55. return new HashCodeBuilder(11, 31).append(user).append(date).toHashCode();
  56. }
  57. @Override
  58. public boolean equals(Object obj) {
  59. if (this == obj)
  60. return true;
  61. if (obj == null)
  62. return false;
  63. if (getClass() != obj.getClass())
  64. return false;
  65. Like other = (Like) obj;
  66. return new EqualsBuilder().append(user, other.user).append(date, other.date).isEquals();
  67. }
  68. public int compareTo(Like o) {
  69. int dateVal = o.getDate().compareTo(getDate());
  70. if (dateVal == 0) {
  71. if (this.equals(o)) {
  72. return dateVal;
  73. }
  74. // use the username as the tie breaker
  75. return o.getUser().getUsername().compareTo(getUser().getUsername());
  76. }
  77. return dateVal;
  78. }
  79. }