blob: c6ae2476772d0eb88c1754e53def4ada206618a2 [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
Simon Hunt4f4ffc32016-08-03 18:30:47 -070018import org.onosproject.net.region.RegionId;
Simon Huntf679c4e2016-04-01 17:02:24 -070019import org.onosproject.ui.model.topo.UiTopoLayout;
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070020import org.onosproject.ui.model.topo.UiTopoLayoutId;
Simon Huntf679c4e2016-04-01 17:02:24 -070021
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070022import java.util.Set;
Simon Huntf679c4e2016-04-01 17:02:24 -070023
24/**
25 * Service for managing {@link UiTopoLayout} instances.
26 */
27public interface UiTopoLayoutService {
28
29 /**
Thomas Vachuska92b016b2016-05-20 11:37:57 -070030 * Returns the top-level root layout, which always exists and cannot
31 * be removed or associated directly with a region.
32 *
33 * @return root topology layout
34 */
35 UiTopoLayout getRootLayout();
36
37 /**
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070038 * Returns the set of available layouts.
Simon Huntf679c4e2016-04-01 17:02:24 -070039 *
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070040 * @return set of available layouts
Simon Huntf679c4e2016-04-01 17:02:24 -070041 */
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070042 Set<UiTopoLayout> getLayouts();
Simon Huntf679c4e2016-04-01 17:02:24 -070043
44 /**
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070045 * Adds a layout to the system or updates an existing one.
Simon Huntf679c4e2016-04-01 17:02:24 -070046 *
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070047 * @param layout the layout to add or update
Simon Huntf679c4e2016-04-01 17:02:24 -070048 * @return an indication of success
49 */
50 boolean addLayout(UiTopoLayout layout);
51
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070052 /**
53 * Returns the layout with the specified identifier.
Thomas Vachuska92b016b2016-05-20 11:37:57 -070054 *
Thomas Vachuska4d66d0a2016-04-15 15:48:13 -070055 * @param layoutId layout identifier
56 * @return layout or null if no such layout is found
57 */
58 UiTopoLayout getLayout(UiTopoLayoutId layoutId);
59
Simon Huntf679c4e2016-04-01 17:02:24 -070060 /**
Simon Hunt4f4ffc32016-08-03 18:30:47 -070061 * Returns the layout which has the backing region identified by
62 * the given region identifier.
63 *
64 * @param regionId region identifier
65 * @return corresponding layout
66 */
67 UiTopoLayout getLayout(RegionId regionId);
68
69 /**
Simon Huntb1ce2602016-07-23 14:04:31 -070070 * Returns the set of peer layouts of the specified layout. That is,
71 * those layouts that share the same parent.
72 *
73 * @param layoutId layout identifier
74 * @return set of peer layouts; empty set if layout has no peers
75 */
Simon Hunt98189192016-07-29 19:02:27 -070076 Set<UiTopoLayout> getPeerLayouts(UiTopoLayoutId layoutId);
Simon Huntb1ce2602016-07-23 14:04:31 -070077
78 /**
Thomas Vachuska92b016b2016-05-20 11:37:57 -070079 * Returns the set of the child layouts of the specified layout.
80 *
81 * @param layoutId layout identifier
82 * @return set of child layouts; empty set if layout has no children
83 */
84 Set<UiTopoLayout> getChildren(UiTopoLayoutId layoutId);
85
86 /**
Simon Huntf679c4e2016-04-01 17:02:24 -070087 * Removes a layout from the system.
88 *
89 * @param layout the layout to remove
90 * @return an indication of success
91 */
92 boolean removeLayout(UiTopoLayout layout);
93
94}