37dc45afdbf6bfc995c48e162b5c2b4d5c2879ea
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / aaiTree / RelatedVnf.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.onap.vid.model.aaiTree;
22
23 import org.onap.vid.aai.util.AAITreeConverter;
24
25 import static org.onap.vid.aai.util.AAITreeConverter.VNF_TYPE;
26
27 public class RelatedVnf extends Node {
28
29     private String serviceInstanceId;
30     private String serviceInstanceName;
31     private String tenantName;
32
33     public String getServiceInstanceId() {
34         return serviceInstanceId;
35     }
36
37     public void setServiceInstanceId(String serviceInstanceId) {
38         this.serviceInstanceId = serviceInstanceId;
39     }
40
41     public String getServiceInstanceName() {
42         return serviceInstanceName;
43     }
44
45     public void setServiceInstanceName(String serviceInstanceName) {
46         this.serviceInstanceName = serviceInstanceName;
47     }
48
49     public String getTenantName() {
50         return tenantName;
51     }
52
53     public void setTenantName(String tenantName) {
54         this.tenantName = tenantName;
55     }
56
57     public RelatedVnf(AAITreeNode node) {
58         super(node, AAITreeConverter.ModelType.vnf);
59     }
60
61     public static RelatedVnf from(AAITreeNode node) {
62         RelatedVnf vnf = new RelatedVnf(node);
63         vnf.setServiceInstanceId(node.getParent().getId());
64         vnf.setServiceInstanceName(node.getParent().getName());
65
66         if (node.getAdditionalProperties().get(VNF_TYPE) != null) {
67             vnf.setInstanceType(node.getAdditionalProperties().get(VNF_TYPE).toString());
68         }
69
70         return vnf;
71     }
72 }