| Package | Description |
|---|---|
| org.onosproject.net.behaviour |
Abstractions of various device configuration or device adaptation behaviours;
counterpart to the device driver subsystem.
|
| org.onosproject.net.device |
Infrastructure device model & related services API definitions.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<PortDescription> |
BridgeConfig.getPorts()
Delete a logical/virtual port.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BridgeConfig.addPort(PortDescription port)
Add a logical/virtual port.
|
void |
PortConfig.applyQoS(PortDescription port,
com.google.common.primitives.UnsignedInteger queueId)
Apply QoS configuration on a device.
|
void |
BridgeConfig.deletePort(PortDescription port)
Delete a logical/virtual port.
|
void |
PortAdmin.enable(PortDescription port)
Enable/disable administratively a port.
|
void |
PortConfig.removeQoS(PortDescription port)
Remove a QoS configuration.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultPortDescription
Default implementation of immutable port description.
|
class |
OchPortDescription
Default implementation of immutable OCh port description.
|
class |
OduCltPortDescription
Default implementation of immutable ODU client port description.
|
class |
OmsPortDescription
Default implementation of immutable OMS port description.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DeviceProviderService.portStatusChanged(DeviceId deviceId,
PortDescription portDescription)
Used to notify the core about port status change of a single port.
|
DeviceEvent |
DeviceStore.updatePortStatus(ProviderId providerId,
DeviceId deviceId,
PortDescription portDescription)
Updates the port status of the specified infrastructure device using the
given port description.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DeviceProviderService.updatePorts(DeviceId deviceId,
List<PortDescription> portDescriptions)
Sends information about all ports of a device.
|
List<DeviceEvent> |
DeviceStore.updatePorts(ProviderId providerId,
DeviceId deviceId,
List<PortDescription> portDescriptions)
Updates the ports of the specified infrastructure device using the given
list of port descriptions.
|
| Constructor and Description |
|---|
DefaultPortDescription(PortDescription base,
SparseAnnotations annotations)
Creates a port description using the supplied information.
|
OchPortDescription(PortDescription base,
OduSignalType signalType,
boolean isTunable,
OchSignal lambda,
SparseAnnotations annotations)
Creates OCH port description based on the supplied information.
|
OduCltPortDescription(PortDescription base,
OduCltPort.SignalType signalType,
SparseAnnotations annotations)
Creates ODU client port description based on the supplied information.
|
OmsPortDescription(PortDescription base,
org.onlab.util.Frequency minFrequency,
org.onlab.util.Frequency maxFrequency,
org.onlab.util.Frequency grid,
SparseAnnotations annotations)
Creates OMS port description based on the supplied information.
|
Copyright © 2015. All rights reserved.