2  * ============LICENSE_START=======================================================
 
   3  *  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 
   4  *  Modifications Copyright (C) 2019 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
 
  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.ArrayList;
 
  25 import java.util.List;
 
  26 import javax.persistence.ElementCollection;
 
  28 import lombok.EqualsAndHashCode;
 
  30 import lombok.NonNull;
 
  31 import lombok.ToString;
 
  33 import org.onap.policy.models.base.PfUtils;
 
  34 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
 
  37  * This class represents valid_values TOSCA constraint.
 
  39  * @author Chenfei Gao (cgao@research.att.com)
 
  41 @EqualsAndHashCode(callSuper = false)
 
  43 public class JpaToscaConstraintValidValues extends JpaToscaConstraint {
 
  44     private static final long serialVersionUID = -5060193250508635456L;
 
  49     private List<String> validValues;
 
  52      * Constructor to set the valid values.
 
  54      * @param validValues the valid values that are allowed
 
  56     public JpaToscaConstraintValidValues(@NonNull final List<String> validValues) {
 
  57         this.validValues = validValues;
 
  61      * Authorative constructor.
 
  63      * @param authorativeConcept the authorative concept to copy from
 
  65     public JpaToscaConstraintValidValues(final ToscaConstraint authorativeConcept) {
 
  66         super(authorativeConcept);
 
  70     public ToscaConstraint toAuthorative() {
 
  71         ToscaConstraint toscaConstraint = new ToscaConstraint();
 
  73         toscaConstraint.setValidValues(validValues);
 
  75         return toscaConstraint;
 
  79     public void fromAuthorative(final ToscaConstraint toscaConstraint) {
 
  80         if (toscaConstraint.getValidValues() != null) {
 
  81             validValues = new ArrayList<>();
 
  82             validValues.addAll(toscaConstraint.getValidValues());
 
  87     public int compareTo(JpaToscaConstraint otherConstraint) {
 
  88         if (otherConstraint == null) {
 
  91         if (this == otherConstraint) {
 
  94         if (getClass() != otherConstraint.getClass()) {
 
  95             return this.hashCode() - otherConstraint.hashCode();
 
  98         final JpaToscaConstraintValidValues other = (JpaToscaConstraintValidValues) otherConstraint;
 
 100         return PfUtils.compareObjects(validValues, other.validValues);