Add support for legacy guard policies
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / ToscaServiceTemplates.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.tosca.simple.concepts;
22
23 import java.util.Map;
24 import java.util.TreeMap;
25
26 import javax.persistence.Entity;
27 import javax.persistence.Inheritance;
28 import javax.persistence.InheritanceType;
29 import javax.persistence.Table;
30
31 import lombok.Data;
32 import lombok.EqualsAndHashCode;
33
34 import org.onap.policy.models.base.PfConceptContainer;
35 import org.onap.policy.models.base.PfConceptKey;
36
37 /**
38  * This class is a container for TOSCA service templates.
39  *
40  * @author Liam Fallon (liam.fallon@est.tech)
41  */
42 @Entity
43 @Table(name = "ToscaServiceTemplates")
44 @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
45 @Data
46 @EqualsAndHashCode(callSuper = true)
47 public class ToscaServiceTemplates extends PfConceptContainer<ToscaServiceTemplate> {
48     private static final long serialVersionUID = -3053257884307604114L;
49
50     /**
51      * The Default Constructor creates a {@link ToscaServiceTemplates} object with a null artifact
52      * key and creates an empty concept map.
53      */
54     public ToscaServiceTemplates() {
55         super(new PfConceptKey());
56     }
57
58     /**
59      * The Key Constructor creates a {@link ToscaServiceTemplates} object with the given artifact
60      * key and creates an empty concept map.
61      *
62      * @param key the concept key
63      */
64     public ToscaServiceTemplates(final PfConceptKey key) {
65         super(key, new TreeMap<PfConceptKey, ToscaServiceTemplate>());
66     }
67
68     /**
69      * This Constructor creates an concept container with all of its fields defined.
70      *
71      * @param key the concept container key
72      * @param conceptMap the concepts to be stored in the concept container
73      */
74     public ToscaServiceTemplates(final PfConceptKey key, final Map<PfConceptKey, ToscaServiceTemplate> conceptMap) {
75         super(key, conceptMap);
76     }
77
78     /**
79      * Copy constructor.
80      *
81      * @param copyConcept the concept to copy from
82      */
83     public ToscaServiceTemplates(final ToscaServiceTemplates copyConcept) {
84         super(copyConcept);
85     }
86 }