blob: a40383b8529c30769fd15008773a4fc5fb953714 [file] [log] [blame]
Simon Hunt4fc86852015-08-20 17:57:52 -07001/*
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.
Simon Hunt4fc86852015-08-20 17:57:52 -070015 */
16
Simon Hunt191c84a2015-08-21 08:24:48 -070017package org.onosproject.ui.topo;
Simon Hunt4fc86852015-08-20 17:57:52 -070018
19import org.onosproject.net.Link;
20import org.onosproject.net.LinkKey;
Simon Hunt4fc86852015-08-20 17:57:52 -070021
22/**
23 * A simple concrete implementation of a {@link BiLink}.
24 * Note that this implementation does not generate any link highlights.
25 */
26public class BaseLink extends BiLink {
27
28 /**
29 * Constructs a base link for the given key and initial link.
30 *
31 * @param key canonical key for this base link
32 * @param link first link
33 */
34 public BaseLink(LinkKey key, Link link) {
35 super(key, link);
36 }
37
38 @Override
39 public LinkHighlight highlight(Enum<?> type) {
40 return null;
41 }
42}