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