blob: 26bb641ab352be51cb5b3a304fda828f46b81344 [file] [log] [blame]
Jonathan Hart1ad75f22016-04-13 21:24:13 -07001/*
2 * Copyright 2016-present 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.incubator.net.routing;
18
19import org.onlab.packet.IpAddress;
20
21import java.util.Collection;
22import java.util.Map;
23import java.util.Set;
24
25/**
26 * Adapter class for the route service.
27 */
28public class RouteServiceAdapter implements RouteAdminService {
29 @Override
30 public void update(Collection<Route> routes) {
31
32 }
33
34 @Override
35 public void withdraw(Collection<Route> routes) {
36
37 }
38
39 @Override
40 public Map<RouteTableId, Collection<Route>> getAllRoutes() {
41 return null;
42 }
43
44 @Override
45 public Route longestPrefixMatch(IpAddress ip) {
46 return null;
47 }
48
49 @Override
50 public Collection<Route> getRoutesForNextHop(IpAddress nextHop) {
51 return null;
52 }
53
54 @Override
55 public Set<NextHop> getNextHops() {
56 return null;
57 }
58
59 @Override
60 public void addListener(RouteListener listener) {
61
62 }
63
64 @Override
65 public void removeListener(RouteListener listener) {
66
67 }
68}