blob: e6b7cfac7565420282f0da0a271c3cd7d82401d7 [file] [log] [blame]
Simon Hunt441c9ae2017-02-03 18:22:31 -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.topo;
18
19/**
20 * Base class for the business logic of topology overlay "monitors".
21 */
22public class AbstractTopoMonitor {
23
24 // TODO: pull common code up into this class
25
26 // Note to Andrea:
27 // this class has to be defined in the core.api module, because
28 // external applications may want to extend it.
29}