7c236e031eee3dad81a75bbe633ce270a4bffcd0
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaConstraint.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 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 java.io.Serializable;
27
28 import lombok.EqualsAndHashCode;
29 import lombok.NoArgsConstructor;
30
31 import org.onap.policy.models.base.PfAuthorative;
32 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
33
34 /**
35  * Immutable class to represent the Constraint of property in TOSCA definition.
36  *
37  * @author Chenfei Gao (cgao@research.att.com)
38  * @author Liam Fallon (liam.fallon@est.tech)
39  */
40 @NoArgsConstructor
41 @EqualsAndHashCode
42 public abstract class JpaToscaConstraint
43         implements PfAuthorative<ToscaConstraint>, Serializable, Comparable<JpaToscaConstraint> {
44     private static final long serialVersionUID = -2689472945262507455L;
45
46     /**
47      * Authorative constructor.
48      *
49      * @param authorativeConcept the authorative concept to copy from
50      */
51     public JpaToscaConstraint(final ToscaConstraint authorativeConcept) {
52         this.fromAuthorative(authorativeConcept);
53     }
54
55     /**
56      * Create instances of constraints of various types.
57      *
58      * @param toscaConstraint the incoming constraint
59      * @return the constraint
60      */
61     public static JpaToscaConstraint newInstance(final ToscaConstraint toscaConstraint) {
62         if (toscaConstraint.getValidValues() != null) {
63             return new JpaToscaConstraintValidValues(toscaConstraint);
64         }
65
66         return (new JpaToscaConstraintLogical(toscaConstraint));
67     }
68 }