/UniwareCore/src/main/java/com/unifier/core/entity/ExportSubscriber.java

https://bitbucket.org/piyushgd10/bhumi · Java · 75 lines · 58 code · 17 blank · 0 comment · 0 complexity · 368f3f47113a2a1d9fd57a386458ac71 MD5 · raw file

  1. package com.unifier.core.entity;
  2. import org.springframework.data.mongodb.core.mapping.Document;
  3. import java.util.Date;
  4. import java.util.List;
  5. @Document(collection = "subscribedExport")
  6. public class ExportSubscriber implements java.io.Serializable {
  7. private String id;
  8. private List<String> usernames;
  9. private String exportJobId;
  10. private Date created;
  11. private Date updated;
  12. private boolean subscribed;
  13. public ExportSubscriber() {
  14. }
  15. public ExportSubscriber(List<String> usernames, String exportJobId, Date created, Date updated, boolean subscribed) {
  16. this.usernames = usernames;
  17. this.exportJobId = exportJobId;
  18. this.created = created;
  19. this.updated = updated;
  20. this.subscribed = subscribed;
  21. }
  22. public String getId() {
  23. return id;
  24. }
  25. public void setId(String id) {
  26. this.id = id;
  27. }
  28. public List<String> getUsernames() {
  29. return usernames;
  30. }
  31. public void setUsernames(List<String> usernames) {
  32. this.usernames = usernames;
  33. }
  34. public String getExportJobId() {
  35. return exportJobId;
  36. }
  37. public void setExportJobId(String exportJobId) {
  38. this.exportJobId = exportJobId;
  39. }
  40. public Date getCreated() {
  41. return created;
  42. }
  43. public void setCreated(Date created) {
  44. this.created = created;
  45. }
  46. public Date getUpdated() {
  47. return updated;
  48. }
  49. public void setUpdated(Date updated) {
  50. this.updated = updated;
  51. }
  52. public boolean isSubscribed() {
  53. return subscribed;
  54. }
  55. public void setSubscribed(boolean subscribed) {
  56. this.subscribed = subscribed;
  57. }
  58. }