Java 17 Upgrade
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaSchemaDefinition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019-2020, 2023 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  * SPDX-License-Identifier: Apache-2.0
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.models.tosca.simple.concepts;
25
26 import jakarta.persistence.Column;
27 import jakarta.persistence.ElementCollection;
28 import java.io.Serial;
29 import java.io.Serializable;
30 import java.util.ArrayList;
31 import java.util.List;
32 import lombok.Data;
33 import lombok.EqualsAndHashCode;
34 import lombok.NoArgsConstructor;
35 import lombok.NonNull;
36 import org.apache.commons.lang3.ObjectUtils;
37 import org.onap.policy.common.parameters.annotations.NotBlank;
38 import org.onap.policy.common.parameters.annotations.NotNull;
39 import org.onap.policy.common.parameters.annotations.Valid;
40 import org.onap.policy.common.utils.validation.Assertions;
41 import org.onap.policy.models.base.PfAuthorative;
42 import org.onap.policy.models.base.PfConceptKey;
43 import org.onap.policy.models.base.PfKey;
44 import org.onap.policy.models.base.PfUtils;
45 import org.onap.policy.models.base.Validated;
46 import org.onap.policy.models.base.validation.annotations.VerifyKey;
47 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
48 import org.onap.policy.models.tosca.authorative.concepts.ToscaSchemaDefinition;
49
50 /**
51  * Class to represent the EntrySchema of list/map property in TOSCA definition.
52  *
53  * @author Chenfei Gao (cgao@research.att.com)
54  * @author Liam Fallon (liam.fallon@est.tech)
55  */
56 @Data
57 @EqualsAndHashCode(callSuper = false)
58 @NoArgsConstructor
59 public class JpaToscaSchemaDefinition extends Validated
60         implements PfAuthorative<ToscaSchemaDefinition>, Serializable, Comparable<JpaToscaSchemaDefinition> {
61
62     @Serial
63     private static final long serialVersionUID = 3645882081163287058L;
64
65     @Column
66     @VerifyKey
67     @NotNull
68     private PfConceptKey type;
69
70     @Column
71     @NotBlank
72     private String description;
73
74     @ElementCollection
75     private List<@NotNull @Valid JpaToscaConstraint> constraints;
76
77     /**
78      * The full constructor creates a {@link JpaToscaSchemaDefinition} object with mandatory fields.
79      *
80      * @param type the type of the entry schema
81      */
82     public JpaToscaSchemaDefinition(@NonNull final PfConceptKey type) {
83         this.type = type;
84     }
85
86     /**
87      * Copy constructor.
88      *
89      * @param copyConcept the concept to copy from
90      */
91     public JpaToscaSchemaDefinition(@NonNull final JpaToscaSchemaDefinition copyConcept) {
92         copyConcept.copyTo(this);
93     }
94
95     /**
96      * Authorative constructor.
97      *
98      * @param authorativeConcept the authorative concept to copy from
99      */
100     public JpaToscaSchemaDefinition(final ToscaSchemaDefinition authorativeConcept) {
101         this.fromAuthorative(authorativeConcept);
102     }
103
104     @Override
105     public ToscaSchemaDefinition toAuthorative() {
106         var toscaEntrySchema = new ToscaSchemaDefinition();
107
108         toscaEntrySchema.setType(type.getName());
109         toscaEntrySchema.setTypeVersion(type.getVersion());
110
111         toscaEntrySchema.setDescription(description);
112
113         if (constraints != null) {
114             List<ToscaConstraint> toscaConstraints = new ArrayList<>();
115
116             for (JpaToscaConstraint constraint : constraints) {
117                 toscaConstraints.add(constraint.toAuthorative());
118             }
119
120             toscaEntrySchema.setConstraints(toscaConstraints);
121         }
122
123         return toscaEntrySchema;
124     }
125
126     @Override
127     public void fromAuthorative(final ToscaSchemaDefinition toscaEntrySchema) {
128         if (toscaEntrySchema.getTypeVersion() != null) {
129             type = new PfConceptKey(toscaEntrySchema.getType(), toscaEntrySchema.getTypeVersion());
130         } else {
131             type = new PfConceptKey(toscaEntrySchema.getType(), PfKey.NULL_KEY_VERSION);
132         }
133
134         description = toscaEntrySchema.getDescription();
135
136         if (toscaEntrySchema.getConstraints() != null) {
137             constraints = new ArrayList<>();
138
139             for (ToscaConstraint toscaConstraint : toscaEntrySchema.getConstraints()) {
140                 constraints.add(JpaToscaConstraint.newInstance(toscaConstraint));
141             }
142         }
143     }
144
145     public List<PfKey> getKeys() {
146         return type.getKeys();
147     }
148
149     public void clean() {
150         type.clean();
151         description = (description != null ? description.trim() : null);
152     }
153
154     @Override
155     public int compareTo(final JpaToscaSchemaDefinition other) {
156         if (other == null) {
157             return -1;
158         }
159         if (this == other) {
160             return 0;
161         }
162
163         int result = ObjectUtils.compare(description, other.description);
164         if (result != 0) {
165             return result;
166         }
167
168         return PfUtils.compareCollections(constraints, other.constraints);
169     }
170
171     /**
172      * Copy this entry schema to another.
173      *
174      * @param target the other schemaa
175      * @return the copied concept
176      */
177     public JpaToscaSchemaDefinition copyTo(@NonNull final JpaToscaSchemaDefinition target) {
178         Assertions.instanceOf(target, JpaToscaSchemaDefinition.class);
179
180         final JpaToscaSchemaDefinition copy = (target);
181         copy.setType(new PfConceptKey(type));
182         copy.setDescription(description);
183
184         if (constraints != null) {
185             // Constraints are immutable
186             final List<JpaToscaConstraint> newConstraints = new ArrayList<>(constraints);
187             copy.setConstraints(newConstraints);
188         }
189
190         return copy;
191     }
192 }