blob: 6fd52fd306b61fd56fd89cec049556c099d5ac99 [file] [log] [blame]
Jonathan Hart365335e2015-12-10 11:09:53 -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 */
16
17package org.onosproject.routing;
18
19import org.onlab.packet.IpAddress;
20
21import java.util.Collection;
22
23/**
24 * Routing service adapter.
25 */
26public class RoutingServiceAdapter implements RoutingService {
27
28 @Override
29 public void start() {
30
31 }
32
33 @Override
34 public void addFibListener(FibListener fibListener) {
35
36 }
37
38 @Override
39 public void stop() {
40
41 }
42
43 @Override
44 public Collection<RouteEntry> getRoutes4() {
45 return null;
46 }
47
48 @Override
49 public Collection<RouteEntry> getRoutes6() {
50 return null;
51 }
52
53 @Override
54 public RouteEntry getLongestMatchableRouteEntry(IpAddress ipAddress) {
55 return null;
56 }
57}