a965c62db394d0d523f13f7fab63e15975d5049d
[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 long serialVersionUID = 1L;
69
70        protected Long id;
71        protected LocalDateTime created;
72        protected LocalDateTime modified;
73        protected FnUser createdId;
74        protected FnUser modifiedId;
75        protected Long rowNum;
76        protected Serializable auditUserId;
77        protected Set auditTrail = null;
78        private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DomainVo.class);
79        
80        @Override
81        public int compareTo(Object obj) {
82               Long c1 = this.getId();
83               Long c2 = ((org.onap.portalsdk.core.domain.support.DomainVo) obj).getId();
84               return c1 != null && c2 != null ? c1.compareTo(c2) : 1;
85        }
86
87        public Object copy(boolean isIdNull) {
88               ByteArrayOutputStream baos = null;
89               ByteArrayInputStream bais = null;
90               ObjectOutputStream oos = null;
91               ObjectInputStream ois = null;
92               DomainVo newVo = null;
93
94               try {
95                      baos = new ByteArrayOutputStream();
96                      oos = new ObjectOutputStream(baos);
97                      oos.writeObject(this);
98                      bais = new ByteArrayInputStream(baos.toByteArray());
99                      ois = new ObjectInputStream(bais);
100                      newVo = (DomainVo) ois.readObject();
101                      if (isIdNull) {
102                             newVo.setId(null);
103                      }
104               } catch (Exception var8) {
105                   logger.error("exception occured",var8);
106               }
107
108               return newVo;
109        }
110
111        public Object clone() throws CloneNotSupportedException {
112               return super.clone();
113        }
114
115        public boolean equals(Object other) {
116               if (this == other) {
117                      return true;
118               } else if (other == null) {
119                      return false;
120               } else if (!(other instanceof DomainVo)) {
121                      return false;
122               } else {
123                      DomainVo castOther = (DomainVo)other;
124                      return this.getId().equals(castOther.getId())
125                              && this.getCreated().equals(castOther.getCreated())
126                              && this.getCreatedId().equals(castOther.getCreatedId())
127                              && this.getModified().equals(castOther.getModified())
128                              && this.getModifiedId() == castOther.getModifiedId();
129               }
130        }
131
132 }