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