blob: 4bb96ce81ac2280fcb50f8e428ccf182e43236c3 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
tom0eb04ca2014-08-25 14:34:51 -070016package org.onlab.osgi;
17
18import com.google.common.collect.ClassToInstanceMap;
19import com.google.common.collect.MutableClassToInstanceMap;
20
21/**
22 * Service directory implementation suitable for testing.
23 */
Ray Milkey5154ec32014-10-22 10:51:18 -070024@SuppressWarnings("unchecked")
tom0eb04ca2014-08-25 14:34:51 -070025public class TestServiceDirectory implements ServiceDirectory {
26
27 private ClassToInstanceMap<Object> services = MutableClassToInstanceMap.create();
28
29 @Override
30 public <T> T get(Class<T> serviceClass) {
31 return services.getInstance(serviceClass);
32 }
33
34 /**
35 * Adds a new service to the directory.
36 *
37 * @param serviceClass service class
38 * @param service service instance
39 * @return self
40 */
41 public TestServiceDirectory add(Class serviceClass, Object service) {
42 services.putInstance(serviceClass, service);
43 return this;
44 }
45
46}