f6b928cceb66a6a5e4760549eeaf1434b8b938ce
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / VimRegisterInfo.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18 import java.util.ArrayList;
19
20 public class VimRegisterInfo {
21
22   private String cloudOwner;
23
24   private String cloudRegionId;
25
26   private String cloudType;
27
28   private String cloudRegionVersion;
29
30   private String ownerDefinedType;
31
32   private String cloudZone;
33   
34   private String complexName;
35   
36   private String cloudExtraInfo;
37   
38   private String status;
39   
40   private ArrayList<VimAuthInfo> vimAuthInfos;
41
42   public String getCloudOwner() {
43     return cloudOwner;
44   }
45
46   public void setCloudOwner(String cloudOwner) {
47     this.cloudOwner = cloudOwner;
48   }
49
50   public String getCloudRegionId() {
51     return cloudRegionId;
52   }
53
54   public void setCloudRegionId(String cloudRegionId) {
55     this.cloudRegionId = cloudRegionId;
56   }
57
58   public String getCloudType() {
59     return cloudType;
60   }
61
62   public void setCloudType(String cloudType) {
63     this.cloudType = cloudType;
64   }
65
66   public String getCloudRegionVersion() {
67     return cloudRegionVersion;
68   }
69
70   public void setCloudRegionVersion(String cloudRegionVersion) {
71     this.cloudRegionVersion = cloudRegionVersion;
72   }
73
74   public String getOwnerDefinedType() {
75     return ownerDefinedType;
76   }
77
78   public void setOwnerDefinedType(String ownerDefinedType) {
79     this.ownerDefinedType = ownerDefinedType;
80   }
81
82   public String getCloudZone() {
83     return cloudZone;
84   }
85
86   public void setCloudZone(String cloudZone) {
87     this.cloudZone = cloudZone;
88   }
89
90   public String getComplexName() {
91     return complexName;
92   }
93
94   public void setComplexName(String complexName) {
95     this.complexName = complexName;
96   }
97
98   public String getCloudExtraInfo() {
99     return cloudExtraInfo;
100   }
101
102   public void setCloudExtraInfo(String cloudExtraInfo) {
103     this.cloudExtraInfo = cloudExtraInfo;
104   }
105
106   public ArrayList<VimAuthInfo> getVimAuthInfos() {
107     return vimAuthInfos;
108   }
109
110   public void setVimAuthInfos(ArrayList<VimAuthInfo> vimAuthInfos) {
111     this.vimAuthInfos = vimAuthInfos;
112   }
113
114   public String getStatus() {
115     return status;
116   }
117
118   public void setStatus(String status) {
119     this.status = status;
120   }
121
122 }