ActivitySpec - Correcting logger messages
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-api / src / main / java / org / openecomp / sdc / generator / aai / tosca / ToscaTemplate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.generator.aai.tosca;
22
23 import java.util.Map;
24
25 public class ToscaTemplate {
26   private String toscaDefinitionsVersion;
27   private Map<String, String> metadata;
28   private String description;
29   private TopologyTemplate topology_template;
30
31   public String getToscaDefinitionsVersion() {
32     return toscaDefinitionsVersion;
33   }
34
35   public void setToscaDefinitionsVersion(String toscaDefinitionsVersion) {
36     this.toscaDefinitionsVersion = toscaDefinitionsVersion;
37   }
38
39   public Map<String, String> getMetadata() {
40     return metadata;
41   }
42
43   public void setMetadata(Map<String, String> metadata) {
44     this.metadata = metadata;
45   }
46
47   public String getDescription() {
48     return description;
49   }
50
51   public void setDescription(String description) {
52     this.description = description;
53   }
54
55   public TopologyTemplate getTopology_template() {
56     return topology_template;
57   }
58
59   public void setTopology_template(TopologyTemplate topology_template) {
60     this.topology_template = topology_template;
61   }
62
63   /**
64    * Is Service.
65    *
66    * @return the boolean
67    */
68   public boolean isService() {
69     return metadata.containsKey("serviceUUID")
70         || ("Service".equalsIgnoreCase(metadata.get("Type"))
71             || ("Service".equalsIgnoreCase(metadata.get("type"))));
72   }
73
74   public String getModelId() {
75     return metadata.get("invariantUUID");
76   }
77
78   public String getModelVersionId() {
79     return metadata.get("UUID");
80   }
81
82 }