Ecomp DTO up
[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.util.Date;
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.portalsdk.core.domain.FusionVo;
58
59 @Getter
60 @Setter
61 @NoArgsConstructor
62 @AllArgsConstructor
63 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
64 public class DomainVo extends FusionVo implements Serializable, Cloneable, Comparable {
65
66        private static final long serialVersionUID = 1L;
67
68        protected Long id;
69        protected Date created;
70        protected Date modified;
71        protected FnUser createdId;
72        protected FnUser modifiedId;
73        protected Long rowNum;
74        protected Serializable auditUserId;
75        protected Set auditTrail = null;
76
77        @Override
78        public int compareTo(Object obj) {
79               Long c1 = this.getId();
80               Long c2 = ((org.onap.portalsdk.core.domain.support.DomainVo) obj).getId();
81               return c1 != null && c2 != null ? c1.compareTo(c2) : 1;
82        }
83
84        public Object copy(boolean isIdNull) {
85               ByteArrayOutputStream baos = null;
86               ByteArrayInputStream bais = null;
87               ObjectOutputStream oos = null;
88               ObjectInputStream ois = null;
89               DomainVo newVo = null;
90
91               try {
92                      baos = new ByteArrayOutputStream();
93                      oos = new ObjectOutputStream(baos);
94                      oos.writeObject(this);
95                      bais = new ByteArrayInputStream(baos.toByteArray());
96                      ois = new ObjectInputStream(bais);
97                      newVo = (DomainVo) ois.readObject();
98                      if (isIdNull) {
99                             newVo.setId(null);
100                      }
101               } catch (Exception var8) {
102                      var8.printStackTrace();
103               }
104
105               return newVo;
106        }
107
108        public Object clone() throws CloneNotSupportedException {
109               return super.clone();
110        }
111 }