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