Create relationship while register VIM.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / VimRegisterInfo.java
1 /**
2  * Copyright 2016-2018 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 physicalLocationId;
38
39     private String cloudExtraInfo;
40
41     private String status;
42
43     private List<VimAuthInfo> vimAuthInfos;
44
45     public String getCloudOwner() {
46         return cloudOwner;
47     }
48
49     public void setCloudOwner(String cloudOwner) {
50         this.cloudOwner = cloudOwner;
51     }
52
53     public String getCloudRegionId() {
54         return cloudRegionId;
55     }
56
57     public void setCloudRegionId(String cloudRegionId) {
58         this.cloudRegionId = cloudRegionId;
59     }
60
61     public String getCloudType() {
62         return cloudType;
63     }
64
65     public void setCloudType(String cloudType) {
66         this.cloudType = cloudType;
67     }
68
69     public String getCloudRegionVersion() {
70         return cloudRegionVersion;
71     }
72
73     public void setCloudRegionVersion(String cloudRegionVersion) {
74         this.cloudRegionVersion = cloudRegionVersion;
75     }
76
77     public String getOwnerDefinedType() {
78         return ownerDefinedType;
79     }
80
81     public void setOwnerDefinedType(String ownerDefinedType) {
82         this.ownerDefinedType = ownerDefinedType;
83     }
84
85     public String getCloudZone() {
86         return cloudZone;
87     }
88
89     public void setCloudZone(String cloudZone) {
90         this.cloudZone = cloudZone;
91     }
92
93     public String getCloudExtraInfo() {
94         return cloudExtraInfo;
95     }
96
97     public void setCloudExtraInfo(String cloudExtraInfo) {
98         this.cloudExtraInfo = cloudExtraInfo;
99     }
100
101     public List<VimAuthInfo> getVimAuthInfos() {
102         return vimAuthInfos;
103     }
104
105     public void setVimAuthInfos(List<VimAuthInfo> vimAuthInfos) {
106         this.vimAuthInfos = vimAuthInfos;
107     }
108
109     public String getStatus() {
110         return status;
111     }
112
113     public void setStatus(String status) {
114         this.status = status;
115     }
116
117     public String getPhysicalLocationId() {
118         return physicalLocationId;
119     }
120
121     public void setPhysicalLocationId(String physicalLocationId) {
122         this.physicalLocationId = physicalLocationId;
123     }
124
125     public String getComplexName() {
126         return complexName;
127     }
128
129     public void setComplexName(String complexName) {
130         this.complexName = complexName;
131     }
132
133 }