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