blob: 0a48196169dbf84ff04cdbfbe51e3ef30b2866c5 [file] [log] [blame]
Simon Hunte05cae42015-07-23 17:35:24 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunte05cae42015-07-23 17:35:24 -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;
19
Simon Huntde99e0b2015-10-23 18:54:06 -070020import org.onosproject.net.DeviceId;
Simon Hunte05cae42015-07-23 17:35:24 -070021import org.onosproject.ui.UiTopoOverlay;
Simon Hunt8d22c4b2015-08-06 16:24:43 -070022import org.onosproject.ui.topo.ButtonId;
23import org.onosproject.ui.topo.PropertyPanel;
Simon Hunte05cae42015-07-23 17:35:24 -070024
25/**
26 * Topology Overlay for network traffic.
27 */
28public class TrafficOverlay extends UiTopoOverlay {
Simon Huntd2862c32015-08-24 17:41:51 -070029 /**
30 * Traffic Overlay identifier.
31 */
32 public static final String TRAFFIC_ID = "traffic";
Simon Hunte05cae42015-07-23 17:35:24 -070033
Simon Hunt8d22c4b2015-08-06 16:24:43 -070034 private static final String SDF_ID = "showDeviceFlows";
35 private static final String SRT_ID = "showRelatedTraffic";
36
37 private static final ButtonId SHOW_DEVICE_FLOWS = new ButtonId(SDF_ID);
38 private static final ButtonId SHOW_RELATED_TRAFFIC = new ButtonId(SRT_ID);
39
40
Simon Hunte05cae42015-07-23 17:35:24 -070041 public TrafficOverlay() {
42 super(TRAFFIC_ID);
43 }
44
Simon Huntd2862c32015-08-24 17:41:51 -070045 // override activate and deactivate, to write log messages
46 @Override
47 public void activate() {
48 super.activate();
49 log.debug("TrafficOverlay Activated");
50 }
51
52 @Override
53 public void deactivate() {
54 super.deactivate();
55 log.debug("TrafficOverlay Deactivated");
56 }
57
Simon Hunt8d22c4b2015-08-06 16:24:43 -070058 @Override
Simon Huntde99e0b2015-10-23 18:54:06 -070059 public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) {
Simon Hunt8d22c4b2015-08-06 16:24:43 -070060 pp.addButton(SHOW_DEVICE_FLOWS)
61 .addButton(SHOW_RELATED_TRAFFIC);
62 }
Simon Hunte05cae42015-07-23 17:35:24 -070063}