Realize the data transaction of VIM.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / CloudRegion.java
1 /**
2  * Copyright 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.aai;
17
18 public class CloudRegion {
19
20   private String cloudOwner;
21   
22   private String cloudRegionId;
23   
24   private String cloudType;
25   
26   private String cloudRegionVersion;
27   
28   private String ownerDefinedType;
29   
30   private String cloudZone;
31   
32   private String complexName;
33   
34   private String cloudExtraInfo;
35   
36   private String resouceVersion;
37   
38   private EsrSystemInfoList esrSystemInfoList;
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 EsrSystemInfoList getEsrSystemInfoList() {
105     return esrSystemInfoList;
106   }
107
108   public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) {
109     this.esrSystemInfoList = esrSystemInfoList;
110   }
111
112   public String getResouceVersion() {
113     return resouceVersion;
114   }
115
116   public void setResouceVersion(String resouceVersion) {
117     this.resouceVersion = resouceVersion;
118   }
119 }