blob: 25596ada6540daa3327583c41c6de878baf37ec6 [file] [log] [blame]
Ray Milkey7f9e0202015-11-04 17:14:09 -08001/*
2 * Copyright 2015 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 */
16package org.onosproject.openflow;
17
18import java.util.Set;
19
20import org.onosproject.net.DeviceId;
21import org.onosproject.net.driver.Behaviour;
22import org.onosproject.net.driver.Driver;
23import org.onosproject.net.driver.DriverHandler;
24import org.onosproject.net.driver.DriverService;
25
26/**
27 * Created by ray on 11/4/15.
28 */
29public class DriverServiceAdapter implements DriverService {
30 @Override
31 public Set<Driver> getDrivers() {
32 return null;
33 }
34
35 @Override
36 public Set<Driver> getDrivers(Class<? extends Behaviour> withBehaviour) {
37 return null;
38 }
39
40 @Override
41 public Driver getDriver(String mfr, String hw, String sw) {
42 return null;
43 }
44
45 @Override
46 public Driver getDriver(DeviceId deviceId) {
47 return null;
48 }
49
50 @Override
51 public DriverHandler createHandler(DeviceId deviceId, String... credentials) {
52 return null;
53 }
54
55 @Override
56 public Driver getDriver(String driverName) {
57 return null;
58 }
59}