b5c2d10e59e5a8189207ff583312226c1d67bd5e
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaConstraintValidValues.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
4  *  Modifications Copyright (C) 2019-2020 Nordix Foundation.
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.ArrayList;
25 import java.util.List;
26 import javax.persistence.ElementCollection;
27 import lombok.EqualsAndHashCode;
28 import lombok.Getter;
29 import lombok.NonNull;
30 import lombok.ToString;
31 import org.onap.policy.models.base.PfUtils;
32 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
33
34 /**
35  * This class represents valid_values TOSCA constraint.
36  *
37  * @author Chenfei Gao (cgao@research.att.com)
38  */
39 @EqualsAndHashCode(callSuper = false)
40 @ToString
41 public class JpaToscaConstraintValidValues extends JpaToscaConstraint {
42     private static final long serialVersionUID = -5060193250508635456L;
43
44     @ElementCollection
45     @Getter
46     private List<String> validValues;
47
48     /**
49      * Constructor to set the valid values.
50      *
51      * @param validValues the valid values that are allowed
52      */
53     public JpaToscaConstraintValidValues(@NonNull final List<String> validValues) {
54         this.validValues = validValues;
55     }
56
57     /**
58      * Authorative constructor.
59      *
60      * @param authorativeConcept the authorative concept to copy from
61      */
62     public JpaToscaConstraintValidValues(final ToscaConstraint authorativeConcept) {
63         /*
64          * The following will call invoke fromAuthorative() which will populate the class fields.
65          */
66         super(authorativeConcept);
67     }
68
69     @Override
70     public ToscaConstraint toAuthorative() {
71         var toscaConstraint = new ToscaConstraint();
72
73         toscaConstraint.setValidValues(validValues);
74
75         return toscaConstraint;
76     }
77
78     @Override
79     public void fromAuthorative(final ToscaConstraint toscaConstraint) {
80         validValues = new ArrayList<>();
81         if (toscaConstraint.getValidValues() != null) {
82             validValues.addAll(toscaConstraint.getValidValues());
83         }
84     }
85
86     @Override
87     public int compareTo(JpaToscaConstraint otherConstraint) {
88         if (otherConstraint == null) {
89             return -1;
90         }
91         if (this == otherConstraint) {
92             return 0;
93         }
94         if (getClass() != otherConstraint.getClass()) {
95             return getClass().getName().compareTo(otherConstraint.getClass().getName());
96         }
97
98         final JpaToscaConstraintValidValues other = (JpaToscaConstraintValidValues) otherConstraint;
99
100         return PfUtils.compareObjects(validValues, other.validValues);
101     }
102 }