9f4438622a613bbedc73ce31214793ee37a5276b
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / CloudRegionDetail.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 import java.io.Serializable;
19
20 import com.google.gson.annotations.SerializedName;
21
22 public class CloudRegionDetail implements Serializable {
23   
24   public static final long serialVersionUID = 1L;
25
26   @SerializedName("cloud-owner")
27   private String cloudOwner;
28   
29   @SerializedName("cloud-region-id")
30   private String cloudRegionId;
31   
32   @SerializedName("cloud-type")
33   private String cloudType;
34   
35   @SerializedName("cloud-region-version")
36   private String cloudRegionVersion;
37   
38   @SerializedName("owner-defined-type")
39   private String ownerDefinedType;
40   
41   @SerializedName("cloud-zone")
42   private String cloudZone;
43   
44   @SerializedName("complex-name")
45   private String complexName;
46   
47   @SerializedName("cloud-extra-info")
48   private String cloudExtraInfo;
49   
50   @SerializedName("resource-version")
51   private String resourceVersion;
52   
53   @SerializedName("esr-system-info-list")
54   private EsrSystemInfoList esrSystemInfoList;
55
56   public String getCloudOwner() {
57     return cloudOwner;
58   }
59
60   public void setCloudOwner(String cloudOwner) {
61     this.cloudOwner = cloudOwner;
62   }
63
64   public String getCloudRegionId() {
65     return cloudRegionId;
66   }
67
68   public void setCloudRegionId(String cloudRegionId) {
69     this.cloudRegionId = cloudRegionId;
70   }
71
72   public String getCloudType() {
73     return cloudType;
74   }
75
76   public void setCloudType(String cloudType) {
77     this.cloudType = cloudType;
78   }
79
80   public String getCloudRegionVersion() {
81     return cloudRegionVersion;
82   }
83
84   public void setCloudRegionVersion(String cloudRegionVersion) {
85     this.cloudRegionVersion = cloudRegionVersion;
86   }
87
88   public String getOwnerDefinedType() {
89     return ownerDefinedType;
90   }
91
92   public void setOwnerDefinedType(String ownerDefinedType) {
93     this.ownerDefinedType = ownerDefinedType;
94   }
95
96   public String getCloudZone() {
97     return cloudZone;
98   }
99
100   public void setCloudZone(String cloudZone) {
101     this.cloudZone = cloudZone;
102   }
103
104   public String getComplexName() {
105     return complexName;
106   }
107
108   public void setComplexName(String complexName) {
109     this.complexName = complexName;
110   }
111
112   public String getCloudExtraInfo() {
113     return cloudExtraInfo;
114   }
115
116   public void setCloudExtraInfo(String cloudExtraInfo) {
117     this.cloudExtraInfo = cloudExtraInfo;
118   }
119
120   public String getResourceVersion() {
121     return resourceVersion;
122   }
123
124   public void setResourceVersion(String resourceVersion) {
125     this.resourceVersion = resourceVersion;
126   }
127
128   public EsrSystemInfoList getEsrSystemInfoList() {
129     return esrSystemInfoList;
130   }
131
132   public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) {
133     this.esrSystemInfoList = esrSystemInfoList;
134   }
135
136 }