/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
- /*
- * Copyright 2013 Unicommerce Technologies (P) Limited . All Rights Reserved.
- * UNICOMMERCE TECHONOLOGIES PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- *
- * @version 1.0, 22-Aug-2013
- * @author sunny
- */
- package com.uniware.core.vo;
- import java.util.Date;
- import org.springframework.data.annotation.Id;
- import org.springframework.data.mongodb.core.index.CompoundIndex;
- import org.springframework.data.mongodb.core.index.CompoundIndexes;
- import org.springframework.data.mongodb.core.mapping.Document;
- import com.uniware.core.vo.UserNotificationTypeVO.NotificationType;
- @Document(collection = "userNotification")
- // @CompoundIndexes({ @CompoundIndex(def = "{'identifier' :1 ,'tenantCode' : 1}") })
- public class UserNotificationVO {
- @Id
- private String id;
- private String tenantCode;
- private String facilityCode;
- private String identifier;
- private NotificationType notificationType;
- private String title;
- private String message;
- private String actionUrl;
- private String clearedBy;
- private Date created;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTenantCode() {
- return tenantCode;
- }
- public void setTenantCode(String tenantCode) {
- this.tenantCode = tenantCode;
- }
- public String getFacilityCode() {
- return facilityCode;
- }
- public void setFacilityCode(String facilityCode) {
- this.facilityCode = facilityCode;
- }
- public String getIdentifier() {
- return identifier;
- }
- public void setIdentifier(String identifier) {
- this.identifier = identifier;
- }
- public NotificationType getNotificationType() {
- return notificationType;
- }
- public void setNotificationType(NotificationType notificationType) {
- this.notificationType = notificationType;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getMessage() {
- return message;
- }
- public void setMessage(String message) {
- this.message = message;
- }
- public String getActionUrl() {
- return actionUrl;
- }
- public void setActionUrl(String actionUrl) {
- this.actionUrl = actionUrl;
- }
- public String getClearedBy() {
- return clearedBy;
- }
- public void setClearedBy(String clearedBy) {
- this.clearedBy = clearedBy;
- }
- public Date getCreated() {
- return created;
- }
- public void setCreated(Date created) {
- this.created = created;
- }
- }