Upgraded test env with Kubernetes support
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / EiType.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.Collections;
25 import java.util.HashMap;
26 import java.util.Map;
27
28 import lombok.Getter;
29
30 public class EiType {
31     @Getter
32     private final String id;
33
34     @Getter
35     private final Object jobDataSchema;
36
37     private final Map<String, EiProducer> producers = new HashMap<>();
38
39     public EiType(String id, Object jobDataSchema) {
40         this.id = id;
41         this.jobDataSchema = jobDataSchema;
42     }
43
44     public synchronized Collection<EiProducer> getProducers() {
45         return Collections.unmodifiableCollection(producers.values());
46     }
47
48     public synchronized Collection<String> getProducerIds() {
49         return Collections.unmodifiableCollection(producers.keySet());
50     }
51
52     public synchronized void addProducer(EiProducer producer) {
53         this.producers.put(producer.getId(), producer);
54     }
55
56     public synchronized EiProducer removeProducer(EiProducer producer) {
57         return this.producers.remove(producer.getId());
58     }
59 }