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