Fix the java code style issue.
[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 import java.io.Serializable;
19 import com.google.gson.annotations.SerializedName;
20
21 public class CloudRegion 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     public String getCloudOwner() {
53         return cloudOwner;
54     }
55
56     public void setCloudOwner(String cloudOwner) {
57         this.cloudOwner = cloudOwner;
58     }
59
60     public String getCloudRegionId() {
61         return cloudRegionId;
62     }
63
64     public void setCloudRegionId(String cloudRegionId) {
65         this.cloudRegionId = cloudRegionId;
66     }
67
68     public String getCloudType() {
69         return cloudType;
70     }
71
72     public void setCloudType(String cloudType) {
73         this.cloudType = cloudType;
74     }
75
76     public String getCloudRegionVersion() {
77         return cloudRegionVersion;
78     }
79
80     public void setCloudRegionVersion(String cloudRegionVersion) {
81         this.cloudRegionVersion = cloudRegionVersion;
82     }
83
84     public String getOwnerDefinedType() {
85         return ownerDefinedType;
86     }
87
88     public void setOwnerDefinedType(String ownerDefinedType) {
89         this.ownerDefinedType = ownerDefinedType;
90     }
91
92     public String getCloudZone() {
93         return cloudZone;
94     }
95
96     public void setCloudZone(String cloudZone) {
97         this.cloudZone = cloudZone;
98     }
99
100     public String getComplexName() {
101         return complexName;
102     }
103
104     public void setComplexName(String complexName) {
105         this.complexName = complexName;
106     }
107
108     public String getCloudExtraInfo() {
109         return cloudExtraInfo;
110     }
111
112     public void setCloudExtraInfo(String cloudExtraInfo) {
113         this.cloudExtraInfo = cloudExtraInfo;
114     }
115
116     public String getResourceVersion() {
117         return resourceVersion;
118     }
119
120     public void setResourceVersion(String resourceVersion) {
121         this.resourceVersion = resourceVersion;
122     }
123
124     public static long getSerialversionuid() {
125         return serialVersionUID;
126     }
127
128 }