95a58f35dd76eaa7b87d72cfaf68b6a2479978cd
[so.git] / adapters / mso-adapter-utils / src / main / java / org / openecomp / mso / openstack / beans / MsoTenant.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.openstack.beans;
22
23
24
25 import java.util.Map;
26
27 /**
28  * This bean class represents the Openstack tenant properties that are
29  * needed by MSO.
30  * 
31  *
32  */
33 public class MsoTenant {
34         private String tenantId;
35         private String tenantName;
36         private Map<String,String> metadata;
37         
38         public MsoTenant() {}
39         
40         public MsoTenant (String id, String name, Map<String,String> metadata) {
41                 this.tenantId = id;
42                 this.tenantName = name;
43                 this.metadata = metadata;
44         }
45         
46         public String getTenantId() {
47                 return tenantId;
48         }
49         public void setTenantId(String tenantId) {
50                 this.tenantId = tenantId;
51         }
52         
53         public String getTenantName() {
54                 return tenantName;
55         }
56         public void setTenantName(String tenantName) {
57                 this.tenantName = tenantName;
58         }
59         
60         public Map<String, String> getMetadata() {
61                 return metadata;
62         }
63         public void setMetadata(Map<String, String> metadata) {
64                 this.metadata = metadata;
65         }
66 }