Java 17 Upgrade
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaCapabilityType.java
index 4db7795..96d176f 100644 (file)
@@ -1,6 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
- * Copyright (C) 2020 Nordix Foundation.
+ * Copyright (C) 2020, 2023 Nordix Foundation.
+ * Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.onap.policy.models.tosca.simple.concepts;
 
-import java.util.Collection;
-import java.util.LinkedHashMap;
-import java.util.LinkedHashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
-import java.util.Set;
-import javax.persistence.ElementCollection;
-import javax.persistence.Entity;
-import javax.persistence.Inheritance;
-import javax.persistence.InheritanceType;
-import javax.persistence.Lob;
-import javax.persistence.Table;
+import jakarta.persistence.Entity;
+import jakarta.persistence.Inheritance;
+import jakarta.persistence.InheritanceType;
+import jakarta.persistence.Table;
+import java.io.Serial;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
 import lombok.NonNull;
-import org.apache.commons.collections4.CollectionUtils;
-import org.onap.policy.models.base.PfAuthorative;
-import org.onap.policy.models.base.PfConcept;
+import org.onap.policy.common.parameters.BeanValidationResult;
 import org.onap.policy.models.base.PfConceptKey;
-import org.onap.policy.models.base.PfKey;
-import org.onap.policy.models.base.PfReferenceKey;
-import org.onap.policy.models.base.PfUtils;
-import org.onap.policy.models.base.PfValidationMessage;
-import org.onap.policy.models.base.PfValidationResult;
-import org.onap.policy.models.base.PfValidationResult.ValidationResult;
 import org.onap.policy.models.tosca.authorative.concepts.ToscaCapabilityType;
-import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
-import org.onap.policy.models.tosca.utils.ToscaUtils;
 
 /**
  * Class to represent the capability type in TOSCA definition.
@@ -59,21 +43,11 @@ import org.onap.policy.models.tosca.utils.ToscaUtils;
 @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
 @Data
 @EqualsAndHashCode(callSuper = true)
-public class JpaToscaCapabilityType extends JpaToscaEntityType<ToscaCapabilityType>
-        implements PfAuthorative<ToscaCapabilityType> {
+@NoArgsConstructor
+public class JpaToscaCapabilityType extends JpaToscaWithToscaProperties<ToscaCapabilityType> {
+    @Serial
     private static final long serialVersionUID = -563659852901842616L;
 
-    @ElementCollection
-    @Lob
-    private Map<String, JpaToscaProperty> properties;
-
-    /**
-     * The Default Constructor creates a {@link JpaToscaCapabilityType} object with a null key.
-     */
-    public JpaToscaCapabilityType() {
-        this(new PfConceptKey());
-    }
-
     /**
      * The Key Constructor creates a {@link JpaToscaCapabilityType} object with the given concept key.
      *
@@ -90,7 +64,6 @@ public class JpaToscaCapabilityType extends JpaToscaEntityType<ToscaCapabilityTy
      */
     public JpaToscaCapabilityType(final JpaToscaCapabilityType copyConcept) {
         super(copyConcept);
-        this.properties = copyConcept.properties == null ? null : new LinkedHashMap<>(copyConcept.properties);
     }
 
     /**
@@ -99,141 +72,17 @@ public class JpaToscaCapabilityType extends JpaToscaEntityType<ToscaCapabilityTy
      * @param authorativeConcept the authorative concept to copy from
      */
     public JpaToscaCapabilityType(final ToscaCapabilityType authorativeConcept) {
-        this.fromAuthorative(authorativeConcept);
+        super(authorativeConcept);
     }
 
     @Override
     public ToscaCapabilityType toAuthorative() {
-        ToscaCapabilityType toscaCapabilityType = new ToscaCapabilityType();
-        super.setToscaEntity(toscaCapabilityType);
-        super.toAuthorative();
-
-        toscaCapabilityType.setProperties(PfUtils.mapMap(properties, JpaToscaProperty::toAuthorative));
-
-        return toscaCapabilityType;
-    }
-
-    @Override
-    public void fromAuthorative(final ToscaCapabilityType toscaCapabilityType) {
-        super.fromAuthorative(toscaCapabilityType);
-
-        // Set properties
-        if (toscaCapabilityType.getProperties() != null) {
-            properties = new LinkedHashMap<>();
-            for (Entry<String, ToscaProperty> toscaPropertyEntry : toscaCapabilityType.getProperties().entrySet()) {
-                JpaToscaProperty jpaProperty = new JpaToscaProperty(toscaPropertyEntry.getValue());
-                jpaProperty.setKey(new PfReferenceKey(getKey(), toscaPropertyEntry.getKey()));
-                properties.put(toscaPropertyEntry.getKey(), jpaProperty);
-            }
-        }
-    }
-
-    @Override
-    public List<PfKey> getKeys() {
-        final List<PfKey> keyList = super.getKeys();
-
-        PfUtils.mapMap(properties, property -> keyList.addAll(property.getKeys()));
-
-
-        if (properties != null) {
-            for (JpaToscaProperty property : properties.values()) {
-                keyList.addAll(property.getKeys());
-            }
-        }
-
-        return keyList;
-    }
-
-    @Override
-    public void clean() {
-        super.clean();
-
-        if (properties != null) {
-            for (JpaToscaProperty property : properties.values()) {
-                property.clean();
-            }
-        }
-    }
-
-    @Override
-    public PfValidationResult validate(@NonNull final PfValidationResult resultIn) {
-        PfValidationResult result = super.validate(resultIn);
-
-        if (getKey().isNullVersion()) {
-            result.addValidationMessage(new PfValidationMessage(getKey(), this.getClass(), ValidationResult.INVALID,
-                    "key version is a null version"));
-        }
-
-        if (properties != null) {
-            result = validateProperties(result);
-        }
-
-        return result;
-    }
-
-    /**
-     * Validate the capabiltiy type properties.
-     *
-     * @param resultIn The result of validations up to now
-     * @return the validation result
-     */
-    private PfValidationResult validateProperties(final PfValidationResult resultIn) {
-        PfValidationResult result = resultIn;
-
-        for (JpaToscaProperty property : properties.values()) {
-            if (property == null) {
-                result.addValidationMessage(new PfValidationMessage(getKey(), this.getClass(), ValidationResult.INVALID,
-                        "capability type property may not be null "));
-            } else {
-                result = property.validate(result);
-            }
-        }
-        return result;
+        super.setToscaEntity(new ToscaCapabilityType());
+        return super.toAuthorative();
     }
 
     @Override
-    public int compareTo(final PfConcept otherConcept) {
-        if (otherConcept == null) {
-            return -1;
-        }
-        if (this == otherConcept) {
-            return 0;
-        }
-        if (getClass() != otherConcept.getClass()) {
-            return getClass().getName().compareTo(otherConcept.getClass().getName());
-        }
-
-        final JpaToscaCapabilityType other = (JpaToscaCapabilityType) otherConcept;
-        int result = super.compareTo(other);
-        if (result != 0) {
-            return result;
-        }
-
-        return PfUtils.compareMaps(properties, other.properties);
-    }
-
-    /**
-     * Get the data types referenced in a capability type.
-     *
-     * @return the data types referenced in a capability type
-     */
-    public Collection<PfConceptKey> getReferencedDataTypes() {
-        if (properties == null) {
-            return CollectionUtils.emptyCollection();
-        }
-
-        Set<PfConceptKey> referencedDataTypes = new LinkedHashSet<>();
-
-        for (JpaToscaProperty property : properties.values()) {
-            referencedDataTypes.add(property.getType());
-
-            if (property.getEntrySchema() != null) {
-                referencedDataTypes.add(property.getEntrySchema().getType());
-            }
-        }
-
-        referencedDataTypes.removeAll(ToscaUtils.getPredefinedDataTypes());
-
-        return referencedDataTypes;
+    public BeanValidationResult validate(@NonNull String fieldName) {
+        return validateWithKey(fieldName);
     }
 }