/src/main/java/urbanairship/Device.java

https://bitbucket.org/sullis/urbanairship-java/ · Java · 203 lines · 146 code · 39 blank · 18 comment · 22 complexity · abcb1d5083dd94704779d16231011ead MD5 · raw file

  1. package urbanairship;
  2. import java.util.*;
  3. import com.google.gson.annotations.SerializedName;
  4. /**
  5. *
  6. *
  7. *
  8. * @see Devices
  9. *
  10. *
  11. */
  12. public class Device implements java.io.Serializable
  13. {
  14. private String alias;
  15. private List<String> tags;
  16. private boolean active = true;
  17. private Calendar lastRegistration;
  18. private Integer badge;
  19. @SerializedName("tz")
  20. private String timeZone;
  21. private QuietTime quiettime;
  22. @SerializedName("device_token")
  23. private String iOSDeviceToken; // for iPhone's, iPad's, etc
  24. @SerializedName("device_pin")
  25. private String blackberryDevicePin;
  26. @SerializedName("apid")
  27. private String androidAPID;
  28. public boolean isActive()
  29. {
  30. return active;
  31. }
  32. public void setActive(boolean active)
  33. {
  34. this.active = active;
  35. }
  36. public String getAlias()
  37. {
  38. return alias;
  39. }
  40. public void setAlias(String alias)
  41. {
  42. this.alias = alias;
  43. }
  44. public Calendar getLastRegistration()
  45. {
  46. return lastRegistration;
  47. }
  48. public void setLastRegistration(Calendar lastRegistration)
  49. {
  50. this.lastRegistration = lastRegistration;
  51. }
  52. public List<String> getTags()
  53. {
  54. return tags;
  55. }
  56. public void setTags(List<String> tags)
  57. {
  58. this.tags = tags;
  59. }
  60. public Integer getBadge()
  61. {
  62. return badge;
  63. }
  64. public void setBadge(Integer badge)
  65. {
  66. this.badge = badge;
  67. }
  68. /**
  69. *
  70. * @return The end userŐs timezone as a timezone name like ŇEurope/BerlinÓ
  71. *
  72. */
  73. public String getTimeZone()
  74. {
  75. return timeZone;
  76. }
  77. /**
  78. *
  79. * @param tz The end userŐs timezone as a timezone name like ŇEurope/BerlinÓ
  80. *
  81. */
  82. public void setTimeZone(String tz)
  83. {
  84. this.timeZone = tz;
  85. }
  86. public QuietTime getQuietTime()
  87. {
  88. return quiettime;
  89. }
  90. public void setQuiettime(QuietTime qt)
  91. {
  92. this.quiettime = qt;
  93. }
  94. public String getiOSDeviceToken()
  95. {
  96. return iOSDeviceToken;
  97. }
  98. public void setiOSDeviceToken(String deviceToken)
  99. {
  100. this.iOSDeviceToken = deviceToken;
  101. }
  102. public String getBlackberryDevicePin()
  103. {
  104. return blackberryDevicePin;
  105. }
  106. public void setBlackberryDevicePin(String devicePin)
  107. {
  108. this.blackberryDevicePin = devicePin;
  109. }
  110. public String getAndroidAPID()
  111. {
  112. return androidAPID;
  113. }
  114. public void setAndroidAPID(String apid)
  115. {
  116. this.androidAPID = apid;
  117. }
  118. public String getPath()
  119. {
  120. String path = null;
  121. if (this.getiOSDeviceToken() != null)
  122. {
  123. path = "device_tokens";
  124. }
  125. else if (this.getAndroidAPID() != null)
  126. {
  127. path = "apids";
  128. }
  129. else if (this.getBlackberryDevicePin() != null)
  130. {
  131. path = "device_pins";
  132. }
  133. return path;
  134. }
  135. public String getIdentifier()
  136. {
  137. String identifier = null;
  138. if (this.getiOSDeviceToken() != null)
  139. {
  140. identifier = getiOSDeviceToken();
  141. }
  142. else if (this.getAndroidAPID() != null)
  143. {
  144. identifier = this.getAndroidAPID();
  145. }
  146. else if (this.getBlackberryDevicePin() != null)
  147. {
  148. identifier = this.getBlackberryDevicePin();
  149. }
  150. return identifier;
  151. }
  152. public void addTag(String tag)
  153. {
  154. if ( (tag == null) || (tag.length() == 0))
  155. {
  156. throw new IllegalArgumentException("tag parameter");
  157. }
  158. if (this.getTags() == null)
  159. {
  160. this.tags = new ArrayList<String>();
  161. }
  162. this.tags.add(tag);
  163. }
  164. }