Package org.onosproject.ui.model
Interface ServiceBundle
-
public interface ServiceBundle
A bundle of services to pass to elements that might need a reference to them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterService
cluster()
Reference to a cluster service implementation.DeviceService
device()
Reference to a device service implementation.FlowRuleService
flow()
Reference to a flow service implementation.HostService
host()
Reference to a host service implementation.IntentService
intent()
Reference to a intent service implementation.UiTopoLayoutService
layout()
Reference to a UI Topology Layout service implementation.LinkService
link()
Reference to a link service implementation.MastershipService
mastership()
Reference to a mastership service implementation.RegionService
region()
Reference to a region service implementation.
-
-
-
Method Detail
-
layout
UiTopoLayoutService layout()
Reference to a UI Topology Layout service implementation.- Returns:
- layout service
-
cluster
ClusterService cluster()
Reference to a cluster service implementation.- Returns:
- cluster service
-
mastership
MastershipService mastership()
Reference to a mastership service implementation.- Returns:
- mastership service
-
region
RegionService region()
Reference to a region service implementation.- Returns:
- region service
-
device
DeviceService device()
Reference to a device service implementation.- Returns:
- device service
-
link
LinkService link()
Reference to a link service implementation.- Returns:
- link service
-
host
HostService host()
Reference to a host service implementation.- Returns:
- host service
-
intent
IntentService intent()
Reference to a intent service implementation.- Returns:
- intent service
-
flow
FlowRuleService flow()
Reference to a flow service implementation.- Returns:
- flow service
-
-