[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / EpNotificationItemExtVO.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.transport;
21
22 import java.util.Date;
23
24 import com.fasterxml.jackson.annotation.JsonInclude;
25
26 @JsonInclude(JsonInclude.Include.NON_NULL)
27 public class EpNotificationItemExtVO {
28         
29         private Character activeYn;
30
31         private String msgHeader;
32
33         private String msgDescription;
34
35         private Date startTime;
36
37         private Date endTime;
38
39         private Integer priority;
40
41         private Integer creatorId;
42
43         private Date createdDate;
44         
45         private String loginId;
46
47         public Character getActiveYn() {
48                 return activeYn;
49         }
50
51         public void setActiveYn(Character activeYn) {
52                 this.activeYn = activeYn;
53         }
54
55         public String getMsgHeader() {
56                 return msgHeader;
57         }
58
59         public void setMsgHeader(String msgHeader) {
60                 this.msgHeader = msgHeader;
61         }
62
63         public String getMsgDescription() {
64                 return msgDescription;
65         }
66
67         public void setMsgDescription(String msgDescription) {
68                 this.msgDescription = msgDescription;
69         }
70
71         public Date getStartTime() {
72                 return startTime;
73         }
74
75         public void setStartTime(Date startTime) {
76                 this.startTime = startTime;
77         }
78
79         public Date getEndTime() {
80                 return endTime;
81         }
82
83         public void setEndTime(Date endTime) {
84                 this.endTime = endTime;
85         }
86
87         public Integer getPriority() {
88                 return priority;
89         }
90
91         public void setPriority(Integer priority) {
92                 this.priority = priority;
93         }
94
95         public Integer getCreatorId() {
96                 return creatorId;
97         }
98
99         public void setCreatorId(Integer creatorId) {
100                 this.creatorId = creatorId;
101         }
102
103         public Date getCreatedDate() {
104                 return createdDate;
105         }
106
107         public void setCreatedDate(Date createdDate) {
108                 this.createdDate = createdDate;
109         }
110
111         public String getLoginId() {
112                 return loginId;
113         }
114
115         public void setLoginId(String loginId) {
116                 this.loginId = loginId;
117         } 
118
119 }