Package org.onosproject.net.behaviour
Interface PortConfigBehaviour
-
- All Superinterfaces:
Behaviour
,HandlerBehaviour
@Beta public interface PortConfigBehaviour extends HandlerBehaviour
Means to configure a logical port at the device.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyQoS(PortDescription port, QosDescription qosDesc)
Apply QoS configuration on a device.void
removeQoS(PortNumber portNumber)
Remove a QoS configuration.-
Methods inherited from interface org.onosproject.net.driver.HandlerBehaviour
handler, setHandler
-
-
-
-
Method Detail
-
applyQoS
void applyQoS(PortDescription port, QosDescription qosDesc)
Apply QoS configuration on a device.- Parameters:
port
- a port descriptionqosDesc
- qos description
-
removeQoS
void removeQoS(PortNumber portNumber)
Remove a QoS configuration.- Parameters:
portNumber
- port identifier
-
-