0850354f4446f4671f482109f96f85e49e28280d
[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
19 import java.util.List;
20
21 public class VimRegisterInfo {
22
23     private String cloudOwner;
24
25     private String cloudRegionId;
26
27     private String cloudType;
28
29     private String cloudRegionVersion;
30
31     private String ownerDefinedType;
32
33     private String cloudZone;
34
35     private String complexName;
36
37     private String cloudExtraInfo;
38
39     private String status;
40
41     private List<VimAuthInfo> vimAuthInfos;
42
43     public String getCloudOwner() {
44         return cloudOwner;
45     }
46
47     public void setCloudOwner(String cloudOwner) {
48         this.cloudOwner = cloudOwner;
49     }
50
51     public String getCloudRegionId() {
52         return cloudRegionId;
53     }
54
55     public void setCloudRegionId(String cloudRegionId) {
56         this.cloudRegionId = cloudRegionId;
57     }
58
59     public String getCloudType() {
60         return cloudType;
61     }
62
63     public void setCloudType(String cloudType) {
64         this.cloudType = cloudType;
65     }
66
67     public String getCloudRegionVersion() {
68         return cloudRegionVersion;
69     }
70
71     public void setCloudRegionVersion(String cloudRegionVersion) {
72         this.cloudRegionVersion = cloudRegionVersion;
73     }
74
75     public String getOwnerDefinedType() {
76         return ownerDefinedType;
77     }
78
79     public void setOwnerDefinedType(String ownerDefinedType) {
80         this.ownerDefinedType = ownerDefinedType;
81     }
82
83     public String getCloudZone() {
84         return cloudZone;
85     }
86
87     public void setCloudZone(String cloudZone) {
88         this.cloudZone = cloudZone;
89     }
90
91     public String getComplexName() {
92         return complexName;
93     }
94
95     public void setComplexName(String complexName) {
96         this.complexName = complexName;
97     }
98
99     public String getCloudExtraInfo() {
100         return cloudExtraInfo;
101     }
102
103     public void setCloudExtraInfo(String cloudExtraInfo) {
104         this.cloudExtraInfo = cloudExtraInfo;
105     }
106
107     public List<VimAuthInfo> getVimAuthInfos() {
108         return vimAuthInfos;
109     }
110
111     public void setVimAuthInfos(List<VimAuthInfo> vimAuthInfos) {
112         this.vimAuthInfos = vimAuthInfos;
113     }
114
115     public String getStatus() {
116         return status;
117     }
118
119     public void setStatus(String status) {
120         this.status = status;
121     }
122
123 }