blob: 5e47480f0ada78b207c7100cf8d1318b56548583 [file] [log] [blame]
Steven Burrows3a9a6442016-05-05 15:31:16 +01001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Steven Burrows3a9a6442016-05-05 15:31:16 +01003 *
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;
18
19import java.util.List;
20
21/**
Simon Hunt8add9ee2016-09-20 17:05:07 -070022 * Abstraction of an entity capable of producing one or more geographic-based
23 * maps for the topology view.
Steven Burrows3a9a6442016-05-05 15:31:16 +010024 */
25public interface UiTopoMapFactory {
26
27 /**
Simon Hunt8add9ee2016-09-20 17:05:07 -070028 * Produces a list of maps to be added to the topology view.
Steven Burrows3a9a6442016-05-05 15:31:16 +010029 *
Simon Hunt8add9ee2016-09-20 17:05:07 -070030 * @return list of maps
Steven Burrows3a9a6442016-05-05 15:31:16 +010031 */
Simon Hunt8add9ee2016-09-20 17:05:07 -070032 List<UiTopoMap> geoMaps();
Steven Burrows3a9a6442016-05-05 15:31:16 +010033}