blob: 22c651f20439b5a13f7aabe8eb4cf0847daf98fa [file] [log] [blame]
Jian Lidc093292017-01-28 06:16:13 +09001/*
2 * Copyright 2017-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.provider.lisp.device.impl;
17
18import org.onosproject.lisp.ctl.LispController;
19import org.onosproject.lisp.ctl.LispMessageListener;
20import org.onosproject.lisp.ctl.LispRouter;
21import org.onosproject.lisp.ctl.LispRouterId;
22import org.onosproject.lisp.ctl.LispRouterListener;
23
24/**
25 * Test Adapter for LispController.
26 */
27public class LispControllerAdapter implements LispController {
28 @Override
29 public Iterable<LispRouter> getRouters() {
30 return null;
31 }
32
33 @Override
34 public Iterable<LispRouter> getSubscribedRouters() {
35 return null;
36 }
37
38 @Override
39 public LispRouter connectRouter(LispRouterId routerId) {
40 return null;
41 }
42
43 @Override
44 public void disconnectRouter(LispRouterId routerId, boolean remove) {
45
46 }
47
48 @Override
49 public LispRouter getRouter(LispRouterId routerId) {
50 return null;
51 }
52
53 @Override
54 public void addRouterListener(LispRouterListener listener) {
55
56 }
57
58 @Override
59 public void removeRouterListener(LispRouterListener listener) {
60
61 }
62
63 @Override
64 public void addMessageListener(LispMessageListener listener) {
65
66 }
67
68 @Override
69 public void removeMessageListener(LispMessageListener listener) {
70
71 }
72}