blob: f7386e741963657ac379b4a907e40f047cdf8513 [file] [log] [blame]
samanwita pal810f7a62015-08-05 13:34:03 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
samanwita pal810f7a62015-08-05 13:34:03 -07003 *
4 * 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
7 *
8 * 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.
15 */
Ray Milkeya4122362015-08-18 15:19:08 -070016package org.onosproject.net.config;
samanwita pal810f7a62015-08-05 13:34:03 -070017
18import java.util.Set;
19
Ray Milkeycd6ab182016-02-03 11:13:09 -080020import com.google.common.collect.ImmutableSet;
21
samanwita pal810f7a62015-08-05 13:34:03 -070022/**
23 * Test adapter for network configuration service registry.
24 */
25public class NetworkConfigRegistryAdapter extends NetworkConfigServiceAdapter implements NetworkConfigRegistry {
26
27 public void registerConfigFactory(ConfigFactory configFactory) {
28 }
29
30 public void unregisterConfigFactory(ConfigFactory configFactory) {
31 }
32
33 public Set<ConfigFactory> getConfigFactories() {
Ray Milkeycd6ab182016-02-03 11:13:09 -080034 return ImmutableSet.of();
samanwita pal810f7a62015-08-05 13:34:03 -070035 }
36
37 public <S, C extends Config<S>> Set<ConfigFactory<S, C>> getConfigFactories(Class<S> subjectClass) {
Ray Milkeycd6ab182016-02-03 11:13:09 -080038 return ImmutableSet.of();
samanwita pal810f7a62015-08-05 13:34:03 -070039 }
40
41 public <S, C extends Config<S>> ConfigFactory<S, C> getConfigFactory(Class<C> configClass) {
42 return null;
43 }
44}