Update license and poms
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / search / registry / SearchProviderRegistry.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sparky.search.registry;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.onap.aai.sparky.search.api.SearchProvider;
27
28 /**
29  * Make this a java-scoped singleton to resolve the contextual issue spanning a Spring Context and
30  * accessing the SPR in other parts of the code that are not directly instantiated by a Spring Bean.
31  * Eventually the SPR doesn’t have to be a real singleton, it could simply be a Spring bean scoped
32  * as a singleton and then wired in via dependency injection to the classes that need it. But I’m
33  * not there yet. This will get a demonstrable extension mechanism in place quickly at practically
34  * no cost, beyond what’s already in the email plus some testing.
35  */
36
37 public class SearchProviderRegistry {
38
39   private List<SearchProvider> searchProviders;
40
41   public SearchProviderRegistry() {
42     searchProviders = new ArrayList<SearchProvider>();
43   }
44
45   public List<SearchProvider> getSearchProviders() {
46     return searchProviders;
47   }
48
49   public final void addSearchProvider(SearchProvider searchProvider) {
50
51     if (searchProvider == null) {
52       return;
53     }
54
55     if (!searchProviders.contains(searchProvider)) {
56       searchProviders.add(searchProvider);
57     }
58   }
59
60   public final void addSearchProviders(List<SearchProvider> searchProviders) {
61
62     if (searchProviders == null) {
63       return;
64     }
65
66     for (SearchProvider searchProvider : searchProviders) {
67       addSearchProvider(searchProvider);
68     }
69
70   }
71
72 }