blob: 93bcf9f74618f5790c9db0ee307b9c2c8ad24d3d [file] [log] [blame]
Thomas Vachuska889648c2015-04-29 17:02:56 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuska889648c2015-04-29 17:02:56 -07003 *
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.ui;
17
Simon Hunt23f9c7b2017-07-10 20:00:30 -070018import org.onosproject.ui.lion.LionBundle;
19
Thomas Vachuska889648c2015-04-29 17:02:56 -070020import java.util.List;
21
22/**
23 * Adapter for testing against UI extension service.
24 */
25public class UiExtensionServiceAdapter implements UiExtensionService {
26 @Override
27 public void register(UiExtension extension) {
28 }
29
30 @Override
31 public void unregister(UiExtension extension) {
32 }
33
34 @Override
35 public List<UiExtension> getExtensions() {
36 return null;
37 }
38
39 @Override
40 public UiExtension getViewExtension(String viewId) {
41 return null;
42 }
Simon Hunt23f9c7b2017-07-10 20:00:30 -070043
44 @Override
45 public LionBundle getNavLionBundle() {
46 return null;
47 }
Thomas Vachuska1b1355d2018-02-06 16:53:58 -080048
49 @Override
50 public void refreshModel() {
51 }
Thomas Vachuska889648c2015-04-29 17:02:56 -070052}