blob: 5309e699345951d2bb826c0ff91387bd6afed0a1 [file] [log] [blame]
Andrea Campanella58454b92016-04-01 15:19:00 -07001/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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 */
16
17package org.onosproject.net.device;
18
19import org.onosproject.net.DeviceId;
20import org.onosproject.net.MastershipRole;
21
22import java.util.Collection;
23import java.util.List;
24
25/**
26 * Test Adapter for DeviceProviderService API.
27 */
28public class DeviceProviderServiceAdapter implements DeviceProviderService {
29 @Override
30 public void deviceConnected(DeviceId deviceId, DeviceDescription deviceDescription) {
31
32 }
33
34 @Override
35 public void deviceDisconnected(DeviceId deviceId) {
36
37 }
38
39 @Override
40 public void updatePorts(DeviceId deviceId, List<PortDescription> portDescriptions) {
41
42 }
43
44 @Override
45 public void portStatusChanged(DeviceId deviceId, PortDescription portDescription) {
46
47 }
48
49 @Override
50 public void receivedRoleReply(DeviceId deviceId, MastershipRole requested, MastershipRole response) {
51
52 }
53
54 @Override
55 public void updatePortStatistics(DeviceId deviceId, Collection<PortStatistics> portStatistics) {
56
57 }
58
59 @Override
60 public DeviceProvider provider() {
61 return null;
62 }
63}