blob: 989c807d45082a4f99d38ef32f2b4ab4d5959c7c [file] [log] [blame]
Simon Huntf679c4e2016-04-01 17:02:24 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Simon Huntf679c4e2016-04-01 17:02: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 */
16package org.onosproject.ui;
17
18import org.onosproject.ui.model.topo.UiTopoLayout;
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070019import org.onosproject.ui.model.topo.UiTopoLayoutId;
Simon Huntf679c4e2016-04-01 17:02:24 -070020
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070021import java.util.Set;
Simon Huntf679c4e2016-04-01 17:02:24 -070022
23/**
24 * Service for managing {@link UiTopoLayout} instances.
25 */
26public interface UiTopoLayoutService {
27
28 /**
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070029 * Returns the set of available layouts.
Simon Huntf679c4e2016-04-01 17:02:24 -070030 *
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070031 * @return set of available layouts
Simon Huntf679c4e2016-04-01 17:02:24 -070032 */
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070033 Set<UiTopoLayout> getLayouts();
Simon Huntf679c4e2016-04-01 17:02:24 -070034
35 /**
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070036 * Adds a layout to the system or updates an existing one.
Simon Huntf679c4e2016-04-01 17:02:24 -070037 *
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070038 * @param layout the layout to add or update
Simon Huntf679c4e2016-04-01 17:02:24 -070039 * @return an indication of success
40 */
41 boolean addLayout(UiTopoLayout layout);
42
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070043
44 /**
45 * Returns the layout with the specified identifier.
46 * @param layoutId layout identifier
47 * @return layout or null if no such layout is found
48 */
49 UiTopoLayout getLayout(UiTopoLayoutId layoutId);
50
Simon Huntf679c4e2016-04-01 17:02:24 -070051 /**
52 * Removes a layout from the system.
53 *
54 * @param layout the layout to remove
55 * @return an indication of success
56 */
57 boolean removeLayout(UiTopoLayout layout);
58
59}