migrate model-impl from drools-applications
[policy/models.git] / models-interactions / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqCloudRegion.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.aai;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.io.Serializable;
27
28 public class AaiNqCloudRegion implements Serializable {
29
30     private static final long serialVersionUID = -897231529157222683L;
31
32     @SerializedName("cloud-owner")
33     private String cloudOwner;
34
35     @SerializedName("cloud-region-id")
36     private String cloudRegionId;
37
38     @SerializedName("cloud-region-version")
39     private String cloudRegionVersion;
40
41     @SerializedName("complex-name")
42     private String complexName;
43
44     @SerializedName("resource-version")
45     private String resourceVersion;
46
47     public String getCloudOwner() {
48         return cloudOwner;
49     }
50
51     public String getCloudRegionId() {
52         return cloudRegionId;
53     }
54
55     public String getCloudRegionVersion() {
56         return cloudRegionVersion;
57     }
58
59     public String getComplexName() {
60         return complexName;
61     }
62
63     public String getResourceVersion() {
64         return resourceVersion;
65     }
66
67     public void setCloudOwner(String cloudOwner) {
68         this.cloudOwner = cloudOwner;
69     }
70
71     public void setCloudRegionId(String cloudRegionId) {
72         this.cloudRegionId = cloudRegionId;
73     }
74
75     public void setCloudRegionVersion(String cloudRegionVersion) {
76         this.cloudRegionVersion = cloudRegionVersion;
77     }
78
79     public void setComplexName(String complexName) {
80         this.complexName = complexName;
81     }
82
83     public void setResourceVersion(String resourceVersion) {
84         this.resourceVersion = resourceVersion;
85     }
86 }