getAppRolesForUser() method up in UserRolesController
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / dto / DomainVo.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;
42
43 import java.io.ByteArrayInputStream;
44 import java.io.ByteArrayOutputStream;
45 import java.io.ObjectInputStream;
46 import java.io.ObjectOutputStream;
47 import java.io.Serializable;
48 import java.time.LocalDateTime;
49 import java.util.Set;
50 import javax.persistence.Inheritance;
51 import javax.persistence.InheritanceType;
52 import lombok.AllArgsConstructor;
53 import lombok.Getter;
54 import lombok.NoArgsConstructor;
55 import lombok.Setter;
56 import org.onap.portal.domain.db.fn.FnUser;
57 import org.onap.portal.utils.EcompPortalUtils;
58 import org.onap.portalsdk.core.domain.FusionVo;
59 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
60
61 @Getter
62 @Setter
63 @NoArgsConstructor
64 @AllArgsConstructor
65 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
66 public class DomainVo extends FusionVo implements Serializable, Cloneable, Comparable {
67
68        private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DomainVo.class);
69        private static final long serialVersionUID = 1L;
70
71        protected Long id;
72        protected LocalDateTime created;
73        protected LocalDateTime modified;
74        protected FnUser createdId;
75        protected FnUser modifiedId;
76        protected Long rowNum;
77        protected Serializable auditUserId;
78        protected Set auditTrail = null;
79
80        public DomainVo(Long id) {
81               this.id = id;
82        }
83
84        @Override
85        public int compareTo(Object obj) {
86               Long c1 = this.getId();
87               Long c2 = ((org.onap.portalsdk.core.domain.support.DomainVo) obj).getId();
88               return c1 != null && c2 != null ? c1.compareTo(c2) : 1;
89        }
90
91        public Object copy(boolean isIdNull) {
92               ByteArrayOutputStream baos = null;
93               ByteArrayInputStream bais = null;
94               ObjectOutputStream oos = null;
95               ObjectInputStream ois = null;
96               DomainVo newVo = null;
97
98               try {
99                      baos = new ByteArrayOutputStream();
100                      oos = new ObjectOutputStream(baos);
101                      oos.writeObject(this);
102                      bais = new ByteArrayInputStream(baos.toByteArray());
103                      ois = new ObjectInputStream(bais);
104                      newVo = (DomainVo) ois.readObject();
105                      if (isIdNull) {
106                             newVo.setId(null);
107                      }
108               } catch (Exception var8) {
109                   logger.error("exception occured",var8);
110               }
111
112               return newVo;
113        }
114
115        public Object clone() throws CloneNotSupportedException {
116               return super.clone();
117        }
118
119        public boolean equals(Object other) {
120               if (this == other) {
121                      return true;
122               } else if (other == null) {
123                      return false;
124               } else if (!(other instanceof DomainVo)) {
125                      return false;
126               } else {
127                      DomainVo castOther = (DomainVo)other;
128                      return this.getId().equals(castOther.getId())
129                              && this.getCreated().equals(castOther.getCreated())
130                              && this.getCreatedId().equals(castOther.getCreatedId())
131                              && this.getModified().equals(castOther.getModified())
132                              && this.getModifiedId() == castOther.getModifiedId();
133               }
134        }
135
136 }