Upgrade sonar plugin
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / changeManagement / LeanCloudConfiguration.java
1 package org.openecomp.vid.changeManagement;
2
3 /**
4  * Created by Oren on 9/5/17.
5  */
6 public class LeanCloudConfiguration {
7
8     public LeanCloudConfiguration() {
9     }
10
11     public LeanCloudConfiguration(org.openecomp.vid.domain.mso.CloudConfiguration cloudConfiguration) {
12         this.tenantId = cloudConfiguration.getTenantId();
13         this.lcpCloudRegionId = cloudConfiguration.getLcpCloudRegionId();
14
15     }
16     public String lcpCloudRegionId;
17
18     public String tenantId;
19
20 }