blob: 327fd1e3aeedfc8ba93eb8c3cd50f7f1d890cc87 [file] [log] [blame]
kmcpeake4fe18c82015-11-17 20:07:39 +00001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
kmcpeake4fe18c82015-11-17 20:07:39 +00003 *
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 */
Andrea Campanellae72ac552016-04-11 10:04:52 -070016
kmcpeake4fe18c82015-11-17 20:07:39 +000017package org.onosproject.incubator.net.faultmanagement.alarm;
18
Andrea Campanellae72ac552016-04-11 10:04:52 -070019import org.onosproject.net.provider.ProviderId;
kmcpeake4fe18c82015-11-17 20:07:39 +000020
Andrea Campanellae72ac552016-04-11 10:04:52 -070021import java.util.Set;
kmcpeake4fe18c82015-11-17 20:07:39 +000022
23/**
Andrea Campanellae72ac552016-04-11 10:04:52 -070024 * Adapter for Alarm Provider Registry.
kmcpeake4fe18c82015-11-17 20:07:39 +000025 */
Andrea Campanellae72ac552016-04-11 10:04:52 -070026public class AlarmProviderRegistryAdapter implements AlarmProviderRegistry {
27
28 @Override
29 public AlarmProviderService register(AlarmProvider provider) {
30 return null;
31 }
32
33 @Override
34 public void unregister(AlarmProvider provider) {
35
36 }
37
38 @Override
39 public Set<ProviderId> getProviders() {
40 return null;
41 }
kmcpeake4fe18c82015-11-17 20:07:39 +000042}