2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2020 Nordix Foundation.
4 * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
5 * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.models.tosca.simple.concepts;
24 import java.util.Collection;
25 import java.util.LinkedHashMap;
26 import java.util.LinkedHashSet;
27 import java.util.List;
29 import java.util.Map.Entry;
31 import javax.persistence.ElementCollection;
32 import javax.persistence.Entity;
33 import javax.persistence.Inheritance;
34 import javax.persistence.InheritanceType;
35 import javax.persistence.Lob;
36 import javax.persistence.Table;
38 import lombok.EqualsAndHashCode;
39 import lombok.NonNull;
40 import org.apache.commons.collections4.CollectionUtils;
41 import org.onap.policy.common.parameters.BeanValidationResult;
42 import org.onap.policy.models.base.PfAuthorative;
43 import org.onap.policy.models.base.PfConcept;
44 import org.onap.policy.models.base.PfConceptKey;
45 import org.onap.policy.models.base.PfKey;
46 import org.onap.policy.models.base.PfReferenceKey;
47 import org.onap.policy.models.base.PfUtils;
48 import org.onap.policy.models.base.Validated;
49 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
50 import org.onap.policy.models.tosca.authorative.concepts.ToscaRelationshipType;
51 import org.onap.policy.models.tosca.utils.ToscaUtils;
54 * Class to represent the relationship type in TOSCA definition.
58 @Table(name = "ToscaRelationshipType")
59 @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
61 @EqualsAndHashCode(callSuper = true)
62 public class JpaToscaRelationshipType extends JpaToscaEntityType<ToscaRelationshipType>
63 implements PfAuthorative<ToscaRelationshipType> {
64 private static final long serialVersionUID = -563659852901842616L;
68 private Map<String, JpaToscaProperty> properties;
71 * The Default Constructor creates a {@link JpaToscaRelationshipType} object with a null key.
73 public JpaToscaRelationshipType() {
74 this(new PfConceptKey());
78 * The Key Constructor creates a {@link JpaToscaRelationshipType} object with the given concept key.
82 public JpaToscaRelationshipType(@NonNull final PfConceptKey key) {
89 * @param copyConcept the concept to copy from
91 public JpaToscaRelationshipType(final JpaToscaRelationshipType copyConcept) {
93 this.properties = PfUtils.mapMap(copyConcept.properties, JpaToscaProperty::new);
97 * Authorative constructor.
99 * @param authorativeConcept the authorative concept to copy from
101 public JpaToscaRelationshipType(final ToscaRelationshipType authorativeConcept) {
102 this.fromAuthorative(authorativeConcept);
106 public ToscaRelationshipType toAuthorative() {
107 ToscaRelationshipType toscaRelationshipType = new ToscaRelationshipType();
108 super.setToscaEntity(toscaRelationshipType);
109 super.toAuthorative();
111 toscaRelationshipType.setProperties(PfUtils.mapMap(properties, JpaToscaProperty::toAuthorative));
113 return toscaRelationshipType;
117 public void fromAuthorative(final ToscaRelationshipType toscaRelationshipType) {
118 super.fromAuthorative(toscaRelationshipType);
121 if (toscaRelationshipType.getProperties() != null) {
122 properties = new LinkedHashMap<>();
123 for (Entry<String, ToscaProperty> toscaPropertyEntry : toscaRelationshipType.getProperties().entrySet()) {
124 JpaToscaProperty jpaProperty = new JpaToscaProperty(toscaPropertyEntry.getValue());
125 jpaProperty.setKey(new PfReferenceKey(getKey(), toscaPropertyEntry.getKey()));
126 properties.put(toscaPropertyEntry.getKey(), jpaProperty);
132 public List<PfKey> getKeys() {
133 final List<PfKey> keyList = super.getKeys();
135 if (properties != null) {
136 for (JpaToscaProperty property : properties.values()) {
137 keyList.addAll(property.getKeys());
145 public void clean() {
148 if (properties != null) {
149 for (JpaToscaProperty property : properties.values()) {
156 public BeanValidationResult validate(String fieldName) {
157 BeanValidationResult result = super.validate(fieldName);
159 result.addResult(validateKeyVersionNotNull("key", getKey()));
161 validateMap(result, "properties", properties, Validated::validateEntryValueNotNull);
167 public int compareTo(final PfConcept otherConcept) {
168 if (otherConcept == null) {
171 if (this == otherConcept) {
174 if (getClass() != otherConcept.getClass()) {
175 return getClass().getName().compareTo(otherConcept.getClass().getName());
178 final JpaToscaRelationshipType other = (JpaToscaRelationshipType) otherConcept;
179 int result = super.compareTo(other);
184 return PfUtils.compareMaps(properties, other.properties);
188 * Get the data types referenced in a relationship type.
190 * @return the data types referenced in a relationship type
192 public Collection<PfConceptKey> getReferencedDataTypes() {
193 if (properties == null) {
194 return CollectionUtils.emptyCollection();
197 Set<PfConceptKey> referencedDataTypes = new LinkedHashSet<>();
199 for (JpaToscaProperty property : properties.values()) {
200 referencedDataTypes.add(property.getType());
202 if (property.getEntrySchema() != null) {
203 referencedDataTypes.add(property.getEntrySchema().getType());
207 referencedDataTypes.removeAll(ToscaUtils.getPredefinedDataTypes());
209 return referencedDataTypes;