blob: eab07e2d3ab8b55324b4a841c190b0eee6658c6f [file] [log] [blame]
Andrea Campanella732ea832017-02-06 09:25:59 -08001/*
2 * Copyright 2017-present 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
17package org.onosproject.ui.impl;
18
19import org.onosproject.ui.UiTopoOverlay;
20
21/**
22 * Topology Overlay for network traffic.
23 */
24public class ProtectedIntentOverlay extends UiTopoOverlay {
25 /**
26 * Traffic Overlay identifier.
27 */
28 public static final String PROTECTED_INTENTS_ID = "protectedIntent";
29
30 public ProtectedIntentOverlay() {
31 super(PROTECTED_INTENTS_ID);
32 }
33
34 // override activate and deactivate, to write log messages
35 @Override
36 public void activate() {
37 super.activate();
38 log.debug("ProtectedIntentOverlay Activated");
39 }
40
41 @Override
42 public void deactivate() {
43 super.deactivate();
44 log.debug("ProtectedIntentOverlay Deactivated");
45 }
46}