Changed in config will add and recover Rics
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / repository / Rics.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.policyagent.repository;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.oransc.policyagent.exceptions.ServiceException;
27
28 /**
29  * Dynamic representation of all Rics in the system.
30  */
31 public class Rics {
32     Map<String, Ric> rics = new HashMap<>();
33
34     public synchronized void put(Ric ric) {
35         rics.put(ric.name(), ric);
36     }
37
38     public synchronized Iterable<Ric> getRics() {
39         return rics.values();
40     }
41
42     public synchronized Ric getRic(String name) throws ServiceException {
43         Ric ric = rics.get(name);
44         if (ric == null) {
45             throw new ServiceException("Could not find ric: " + name);
46         }
47         return ric;
48     }
49
50     public synchronized Ric get(String name) {
51         return rics.get(name);
52     }
53
54     public synchronized void remove(String name) {
55         rics.remove(name);
56     }
57
58     public synchronized int size() {
59         return rics.size();
60     }
61
62     public synchronized void clear() {
63         this.rics.clear();
64     }
65 }