blob: aeebeeb8da67d0f6a9aeb69d1711fad1f7a8552d [file] [log] [blame]
Jian Li7ccc3a82016-12-09 01:30:56 +09001/*
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 */
16package org.onosproject.lisp.ctl;
17
18/**
19 * Test adapter for the LISP controller interface.
20 */
21public class LispControllerAdapter implements LispController {
22 @Override
23 public Iterable<LispRouter> getRouters() {
24 return null;
25 }
26
27 @Override
Jian Li834ff722016-12-13 19:43:02 +090028 public Iterable<LispRouter> getSubscribedRouters() {
29 return null;
30 }
31
32 @Override
Jian Li7ccc3a82016-12-09 01:30:56 +090033 public LispRouter getRouter(LispRouterId routerId) {
34 return null;
35 }
36
37 @Override
38 public void addRouterListener(LispRouterListener listener) {
39
40 }
41
42 @Override
43 public void removeRouterListener(LispRouterListener listener) {
44
45 }
46
47 @Override
48 public void addMessageListener(LispMessageListener listener) {
49
50 }
51
52 @Override
53 public void removeMessageListener(LispMessageListener listener) {
54
55 }
56}