AT&T 1712 and 1802 release code
[so.git] / common / src / main / java / org / openecomp / mso / serviceinstancebeans / CloudConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.serviceinstancebeans;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonInclude;
26 import com.fasterxml.jackson.annotation.JsonInclude.Include;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonRootName;
29
30 @JsonRootName(value = "cloudConfiguration")
31 @JsonInclude(Include.NON_DEFAULT)
32 public class CloudConfiguration implements Serializable {
33
34         private static final long serialVersionUID = 6260165690180745471L;
35         @JsonProperty("aicNodeClli")
36     protected String aicNodeClli;
37         @JsonProperty("tenantId")
38     protected String tenantId;
39         @JsonProperty("lcpCloudRegionId")
40     protected String lcpCloudRegionId;
41
42     /**
43      * Gets the value of the aicNodeClli property.
44      *
45      * @return
46      *     possible object is
47      *     {@link String }
48      *
49      */
50     public String getAicNodeClli() {
51         return aicNodeClli;
52     }
53
54     /**
55      * Sets the value of the aicNodeClli property.
56      *
57      * @param value
58      *     allowed object is
59      *     {@link String }
60      *
61      */
62     public void setAicNodeClli(String value) {
63         this.aicNodeClli = value;
64     }
65
66     /**
67      * Gets the value of the tenantId property.
68      *
69      * @return
70      *     possible object is
71      *     {@link String }
72      *
73      */
74     public String getTenantId() {
75         return tenantId;
76     }
77
78     /**
79      * Sets the value of the tenantId property.
80      *
81      * @param value
82      *     allowed object is
83      *     {@link String }
84      *
85      */
86     public void setTenantId(String value) {
87         this.tenantId = value;
88     }
89
90
91         public String getLcpCloudRegionId() {
92                 return lcpCloudRegionId;
93         }
94
95         public void setLcpCloudRegionId(String lcpCloudRegionId) {
96                 this.lcpCloudRegionId = lcpCloudRegionId;
97         }
98
99         @Override
100         public String toString() {
101                 return "CloudConfiguration [aicNodeClli=" + aicNodeClli + ", tenantId="
102                                 + tenantId + ", lcpCloudRegionId=" + lcpCloudRegionId + "]";
103         }
104
105
106 }