blob: 057a59875a5a09c6a103c0cad1d4c80778537f43 [file] [log] [blame]
Simon Hunt6cc86452017-04-27 17:46:22 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Simon Hunt6cc86452017-04-27 17:46:22 -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 *
16 */
17
18package org.onosproject.ui.impl.topo;
19
20import org.onosproject.ui.UiTopo2Overlay;
21import org.slf4j.Logger;
22import org.slf4j.LoggerFactory;
23
24/**
25 * Traffic overlay for topology 2 view.
26 */
27public class Traffic2Overlay extends UiTopo2Overlay {
28
29 private final Logger log = LoggerFactory.getLogger(getClass());
30
31 // NOTE: this must match the ID defined in topo2TrafficOverlay.js
Sean Condonadeb7162019-04-13 20:56:14 +010032 public static final String OVERLAY_ID = "traffic-2-overlay";
Simon Hunt6cc86452017-04-27 17:46:22 -070033
34 /**
35 * Creates a traffic overlay instance.
36 */
37 public Traffic2Overlay() {
38 super(OVERLAY_ID);
39 }
40
41 @Override
42 public void highlightingCallback() {
43 log.debug("highlightingCallback() invoked");
44 // TODO: implement
45 }
46}