dd3fa9546fb1a956cd06f0fef800ac63d3be0f01
[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 ArrayList<VimAuthInfo> vimAuthInfos;
39
40   public String getCloudOwner() {
41     return cloudOwner;
42   }
43
44   public void setCloudOwner(String cloudOwner) {
45     this.cloudOwner = cloudOwner;
46   }
47
48   public String getCloudRegionId() {
49     return cloudRegionId;
50   }
51
52   public void setCloudRegionId(String cloudRegionId) {
53     this.cloudRegionId = cloudRegionId;
54   }
55
56   public String getCloudType() {
57     return cloudType;
58   }
59
60   public void setCloudType(String cloudType) {
61     this.cloudType = cloudType;
62   }
63
64   public String getCloudRegionVersion() {
65     return cloudRegionVersion;
66   }
67
68   public void setCloudRegionVersion(String cloudRegionVersion) {
69     this.cloudRegionVersion = cloudRegionVersion;
70   }
71
72   public String getOwnerDefinedType() {
73     return ownerDefinedType;
74   }
75
76   public void setOwnerDefinedType(String ownerDefinedType) {
77     this.ownerDefinedType = ownerDefinedType;
78   }
79
80   public String getCloudZone() {
81     return cloudZone;
82   }
83
84   public void setCloudZone(String cloudZone) {
85     this.cloudZone = cloudZone;
86   }
87
88   public String getComplexName() {
89     return complexName;
90   }
91
92   public void setComplexName(String complexName) {
93     this.complexName = complexName;
94   }
95
96   public String getCloudExtraInfo() {
97     return cloudExtraInfo;
98   }
99
100   public void setCloudExtraInfo(String cloudExtraInfo) {
101     this.cloudExtraInfo = cloudExtraInfo;
102   }
103
104   public ArrayList<VimAuthInfo> getVimAuthInfos() {
105     return vimAuthInfos;
106   }
107
108   public void setVimAuthInfos(ArrayList<VimAuthInfo> vimAuthInfos) {
109     this.vimAuthInfos = vimAuthInfos;
110   }
111
112 }