Implant vid-app-common org.onap.vid.job (main and test)
[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 static org.onap.vid.aai.util.AAITreeConverter.VNF_TYPE;
24
25 import org.apache.commons.lang3.builder.ToStringBuilder;
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);
59     }
60
61     public static RelatedVnf from(AAITreeNode node) {
62         RelatedVnf vnf = new RelatedVnf(node);
63         if (node.getParent() != null && node.getParent().getType() == NodeType.SERVICE_INSTANCE) {
64             vnf.setServiceInstanceId(node.getParent().getId());
65             vnf.setServiceInstanceName(node.getParent().getName());
66         }
67
68         if (node.getAdditionalProperties().get(VNF_TYPE) != null) {
69             vnf.setInstanceType(node.getAdditionalProperties().get(VNF_TYPE).toString());
70         }
71
72         return vnf;
73     }
74
75     @Override
76     public String toString() {
77         return new ToStringBuilder(this)
78             .append("serviceInstanceId", serviceInstanceId)
79             .append("serviceInstanceName", serviceInstanceName)
80             .append("tenantName", tenantName)
81             .append("action", action)
82             .append("instanceName", instanceName)
83             .append("instanceId", instanceId)
84             .append("orchStatus", orchStatus)
85             .append("productFamilyId", productFamilyId)
86             .append("lcpCloudRegionId", lcpCloudRegionId)
87             .append("tenantId", tenantId)
88             .append("cloudOwner", cloudOwner)
89             .append("modelInfo", modelInfo)
90             .toString();
91     }
92 }