Java 17 Upgrade
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaDataTypes.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020, 2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2019-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
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
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.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.simple.concepts;
23
24 import jakarta.persistence.Entity;
25 import jakarta.persistence.Inheritance;
26 import jakarta.persistence.InheritanceType;
27 import jakarta.persistence.Table;
28 import java.io.Serial;
29 import java.util.List;
30 import java.util.Map;
31 import java.util.TreeMap;
32 import lombok.Data;
33 import lombok.EqualsAndHashCode;
34 import lombok.NonNull;
35 import lombok.ToString;
36 import org.onap.policy.common.parameters.BeanValidationResult;
37 import org.onap.policy.models.base.PfConceptContainer;
38 import org.onap.policy.models.base.PfConceptKey;
39 import org.onap.policy.models.tosca.authorative.concepts.ToscaDataType;
40 import org.onap.policy.models.tosca.utils.ToscaUtils;
41
42 /**
43  * This class is a container for TOSCA data types.
44  *
45  * @author Liam Fallon (liam.fallon@est.tech)
46  */
47 @Entity
48 @Table(name = "ToscaDataTypes")
49 @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
50 @Data
51 @ToString(callSuper = true)
52 @EqualsAndHashCode(callSuper = true)
53 public class JpaToscaDataTypes extends PfConceptContainer<JpaToscaDataType, ToscaDataType> {
54     @Serial
55     private static final long serialVersionUID = 2941102271022190348L;
56
57     public static final String DEFAULT_NAME = "ToscaDataTypesSimple";
58     public static final String DEFAULT_VERSION = "1.0.0";
59
60     /**
61      * The Default Constructor creates a {@link JpaToscaDataTypes} object with a null artifact key and creates an empty
62      * concept map.
63      */
64     public JpaToscaDataTypes() {
65         super(new PfConceptKey(DEFAULT_NAME, DEFAULT_VERSION));
66     }
67
68     /**
69      * The Key Constructor creates a {@link JpaToscaDataTypes} object with the given artifact key and creates an empty
70      * concept map.
71      *
72      * @param key the concept key
73      */
74     public JpaToscaDataTypes(final PfConceptKey key) {
75         super(key, new TreeMap<>());
76     }
77
78     /**
79      * This Constructor creates a concept container with all of its fields defined.
80      *
81      * @param key the concept container key
82      * @param conceptMap the concepts to be stored in the concept container
83      */
84     public JpaToscaDataTypes(final PfConceptKey key, final Map<PfConceptKey, JpaToscaDataType> conceptMap) {
85         super(key, conceptMap);
86     }
87
88     /**
89      * Copy constructor.
90      *
91      * @param copyConcept the concept to copy from
92      */
93     public JpaToscaDataTypes(final JpaToscaDataTypes copyConcept) {
94         super(copyConcept);
95     }
96
97     /**
98      * Authorative constructor.
99      *
100      * @param authorativeConceptMapList the authorative concept to copy from
101      */
102     public JpaToscaDataTypes(final List<Map<String, ToscaDataType>> authorativeConceptMapList) {
103         super(new PfConceptKey(DEFAULT_NAME, DEFAULT_VERSION));
104         this.fromAuthorative(authorativeConceptMapList);
105     }
106
107     @Override
108     public BeanValidationResult validate(@NonNull String fieldName) {
109         BeanValidationResult result = super.validate(fieldName);
110
111         for (JpaToscaDataType dataType : this.getConceptMap().values()) {
112             ToscaUtils.getEntityTypeAncestors(this, dataType, result);
113         }
114
115         return result;
116     }
117 }