7668ff16f5a8430e2fc8f466e86abeb272f5010a
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / EiTypes.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.enrichment.repository;
22
23 import java.util.Collection;
24 import java.util.HashMap;
25 import java.util.Map;
26 import java.util.Vector;
27
28 import org.oransc.enrichment.exceptions.ServiceException;
29
30 /**
31  * Dynamic representation of all EI Types in the system.
32  */
33 public class EiTypes {
34     Map<String, EiType> allEiTypes = new HashMap<>();
35
36     public synchronized void put(EiType type) {
37         allEiTypes.put(type.id(), type);
38     }
39
40     public synchronized Collection<EiType> getAllEiTypes() {
41         return new Vector<>(allEiTypes.values());
42     }
43
44     public synchronized EiType getType(String id) throws ServiceException {
45         EiType type = allEiTypes.get(id);
46         if (type == null) {
47             throw new ServiceException("Could not find EI Job: " + id);
48         }
49         return type;
50     }
51
52     public synchronized EiType get(String id) {
53         return allEiTypes.get(id);
54     }
55
56     public synchronized void remove(String id) {
57         allEiTypes.remove(id);
58     }
59
60     public synchronized int size() {
61         return allEiTypes.size();
62     }
63
64     public synchronized void clear() {
65         this.allEiTypes.clear();
66     }
67
68 }