/UniwareCore/src/main/java/com/uniware/core/vo/UserNotificationVO.java

https://bitbucket.org/piyushgd10/bhumi · Java · 115 lines · 81 code · 26 blank · 8 comment · 0 complexity · 00e05cd88e115f959b07ef05d51eb5b1 MD5 · raw file

  1. /*
  2. * Copyright 2013 Unicommerce Technologies (P) Limited . All Rights Reserved.
  3. * UNICOMMERCE TECHONOLOGIES PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. *
  5. * @version 1.0, 22-Aug-2013
  6. * @author sunny
  7. */
  8. package com.uniware.core.vo;
  9. import java.util.Date;
  10. import org.springframework.data.annotation.Id;
  11. import org.springframework.data.mongodb.core.index.CompoundIndex;
  12. import org.springframework.data.mongodb.core.index.CompoundIndexes;
  13. import org.springframework.data.mongodb.core.mapping.Document;
  14. import com.uniware.core.vo.UserNotificationTypeVO.NotificationType;
  15. @Document(collection = "userNotification")
  16. // @CompoundIndexes({ @CompoundIndex(def = "{'identifier' :1 ,'tenantCode' : 1}") })
  17. public class UserNotificationVO {
  18. @Id
  19. private String id;
  20. private String tenantCode;
  21. private String facilityCode;
  22. private String identifier;
  23. private NotificationType notificationType;
  24. private String title;
  25. private String message;
  26. private String actionUrl;
  27. private String clearedBy;
  28. private Date created;
  29. public String getId() {
  30. return id;
  31. }
  32. public void setId(String id) {
  33. this.id = id;
  34. }
  35. public String getTenantCode() {
  36. return tenantCode;
  37. }
  38. public void setTenantCode(String tenantCode) {
  39. this.tenantCode = tenantCode;
  40. }
  41. public String getFacilityCode() {
  42. return facilityCode;
  43. }
  44. public void setFacilityCode(String facilityCode) {
  45. this.facilityCode = facilityCode;
  46. }
  47. public String getIdentifier() {
  48. return identifier;
  49. }
  50. public void setIdentifier(String identifier) {
  51. this.identifier = identifier;
  52. }
  53. public NotificationType getNotificationType() {
  54. return notificationType;
  55. }
  56. public void setNotificationType(NotificationType notificationType) {
  57. this.notificationType = notificationType;
  58. }
  59. public String getTitle() {
  60. return title;
  61. }
  62. public void setTitle(String title) {
  63. this.title = title;
  64. }
  65. public String getMessage() {
  66. return message;
  67. }
  68. public void setMessage(String message) {
  69. this.message = message;
  70. }
  71. public String getActionUrl() {
  72. return actionUrl;
  73. }
  74. public void setActionUrl(String actionUrl) {
  75. this.actionUrl = actionUrl;
  76. }
  77. public String getClearedBy() {
  78. return clearedBy;
  79. }
  80. public void setClearedBy(String clearedBy) {
  81. this.clearedBy = clearedBy;
  82. }
  83. public Date getCreated() {
  84. return created;
  85. }
  86. public void setCreated(Date created) {
  87. this.created = created;
  88. }
  89. }