blob: 3db6b0b2f14a7ccbc742856c0402863d73576873 [file] [log] [blame]
Jian Li3bc6ef12017-05-04 21:51:41 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jian Li3bc6ef12017-05-04 21:51:41 +09003 *
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.mapping.web.gui;
17
18import org.onosproject.net.DeviceId;
19import org.onosproject.ui.UiTopoOverlay;
20import org.onosproject.ui.topo.ButtonId;
21import org.onosproject.ui.topo.PropertyPanel;
22
23import static org.onosproject.ui.topo.TopoConstants.Properties.FLOWS;
24import static org.onosproject.ui.topo.TopoConstants.Properties.INTENTS;
25import static org.onosproject.ui.topo.TopoConstants.Properties.LATITUDE;
26import static org.onosproject.ui.topo.TopoConstants.Properties.LONGITUDE;
27import static org.onosproject.ui.topo.TopoConstants.Properties.PORTS;
28import static org.onosproject.ui.topo.TopoConstants.Properties.TUNNELS;
29
30/**
31 * Customized topology overlay for mapping management app.
32 */
33public class MappingsTopoOverlay extends UiTopoOverlay {
34
35 // NOTE: this must match the ID defined in mappingTopo.js
36 private static final String OVERLAY_ID = "mapping-overlay";
37
38 private static final ButtonId MAPPINGS_BUTTON = new ButtonId("mappings");
39
40 /**
41 * Creates a new user interface topology view overlay descriptor, with
42 * the given identifier.
43 */
44 public MappingsTopoOverlay() {
45 super(OVERLAY_ID);
46 }
47
48 @Override
49 public void modifySummary(PropertyPanel pp) {
50 pp.removeProps(
51 INTENTS,
52 TUNNELS,
53 FLOWS
54 );
55 }
56
57 @Override
58 public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) {
59 pp.removeAllButtons();
60 pp.removeProps(LATITUDE, LONGITUDE, PORTS, FLOWS, TUNNELS);
61 pp.addButton(MAPPINGS_BUTTON);
62 }
63}