Add multi-layer RIC instance selector
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / RicRegionTransport.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 AT&T Intellectual Property
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.oransc.ric.portal.dashboard.model;
22
23 import java.util.List;
24
25 /**
26  * Transport model for RIC region which has a list of instances with ONLY
27  * key-name pairs.
28  */
29 public class RicRegionTransport implements IDashboardResponse {
30
31         private String name;
32         private List<RicInstanceKeyName> instances;
33
34         public String getName() {
35                 return name;
36         }
37
38         public RicRegionTransport name(String name) {
39                 this.name = name;
40                 return this;
41         }
42
43         public List<RicInstanceKeyName> getInstances() {
44                 return instances;
45         }
46
47         public RicRegionTransport instances(List<RicInstanceKeyName> instances) {
48                 this.instances = instances;
49                 return this;
50         }
51
52         @Override
53         public String toString() {
54                 return this.getClass().getSimpleName() + "[name=" + getName() + ", instances=" + instances + "]";
55         }
56
57 }