Ecomp DTO up
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / dto / DomainVo.java
index 6c722bf..df99ed8 100644 (file)
@@ -50,7 +50,6 @@ import java.util.Set;
 import javax.persistence.Inheritance;
 import javax.persistence.InheritanceType;
 import lombok.AllArgsConstructor;
-import lombok.EqualsAndHashCode;
 import lombok.Getter;
 import lombok.NoArgsConstructor;
 import lombok.Setter;
@@ -59,12 +58,13 @@ import org.onap.portalsdk.core.domain.FusionVo;
 
 @Getter
 @Setter
-
 @NoArgsConstructor
 @AllArgsConstructor
-@Inheritance(strategy = InheritanceType.JOINED)
+@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
 public class DomainVo extends FusionVo implements Serializable, Cloneable, Comparable {
+
        private static final long serialVersionUID = 1L;
+
        protected Long id;
        protected Date created;
        protected Date modified;
@@ -77,7 +77,7 @@ public class DomainVo extends FusionVo implements Serializable, Cloneable, Compa
        @Override
        public int compareTo(Object obj) {
               Long c1 = this.getId();
-              Long c2 = ((org.onap.portalsdk.core.domain.support.DomainVo)obj).getId();
+              Long c2 = ((org.onap.portalsdk.core.domain.support.DomainVo) obj).getId();
               return c1 != null && c2 != null ? c1.compareTo(c2) : 1;
        }
 
@@ -94,7 +94,7 @@ public class DomainVo extends FusionVo implements Serializable, Cloneable, Compa
                      oos.writeObject(this);
                      bais = new ByteArrayInputStream(baos.toByteArray());
                      ois = new ObjectInputStream(bais);
-                     newVo = (DomainVo)ois.readObject();
+                     newVo = (DomainVo) ois.readObject();
                      if (isIdNull) {
                             newVo.setId(null);
                      }