Transport DTO up
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / dto / transport / EpNotificationItem.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.domain.dto.transport;
42
43 import java.util.Date;
44 import java.util.List;
45 import java.util.Set;
46 import javax.validation.constraints.Digits;
47 import javax.validation.constraints.Size;
48 import lombok.AllArgsConstructor;
49 import lombok.Builder;
50 import lombok.EqualsAndHashCode;
51 import lombok.Getter;
52 import lombok.NoArgsConstructor;
53 import lombok.Setter;
54 import lombok.ToString;
55 import org.hibernate.validator.constraints.SafeHtml;
56 import org.onap.portalsdk.core.domain.support.DomainVo;
57
58 @Getter
59 @Setter
60 @Builder
61 @ToString
62 @EqualsAndHashCode()
63 @NoArgsConstructor
64 @AllArgsConstructor
65 public class EpNotificationItem extends DomainVo {
66
67        private static final long serialVersionUID = 1L;
68
69        @Digits(integer = 11, fraction = 0)
70        private Long notificationId;
71        @Size(max = 1)
72        @SafeHtml
73        private String isForOnlineUsers;
74        @Size(max = 1)
75        @SafeHtml
76        private String isForAllRoles;
77        @Size(max = 1)
78        @SafeHtml
79        private String activeYn;
80        @Size(max = 100)
81        @SafeHtml
82        private String msgHeader;
83        @Size(max = 2000)
84        @SafeHtml
85        private String msgDescription;
86        @Size(max = 50)
87        @SafeHtml
88        private String msgSource;
89        private Date startTime;
90        private Date endTime;
91        @Digits(integer = 11, fraction = 0)
92        private Long priority;
93        @Digits(integer = 11, fraction = 0)
94        private Long creatorId;
95        private Date createdDate;
96        @Size(max = 512)
97        @SafeHtml
98        private String notificationHyperlink;
99        private Set<EpRoleNotificationItem> roles;
100        private List<Long> roleIds;
101
102 }