Interface OpenflowConnectionsState
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
State
@Generated("mdsal-binding-generator") public interface OpenflowConnectionsState extends org.opendaylight.yangtools.yang.binding.DataObject
Operational state data for OpenFlow controller connectionsThis class represents the following YANG schema fragment defined in module openconfig-openflow
grouping openflow-connections-state { leaf connected { type boolean; } }The schema path to identify an instance is openconfig-openflowopenflow-connections-state
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BooleangetConnected()Return connected, ornullif it is not present.Class<? extends OpenflowConnectionsState>implementedInterface()default @NonNull BooleanrequireConnected()Return connected, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends OpenflowConnectionsState> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getConnected
Boolean getConnected()
Return connected, ornullif it is not present.When set to true, indicates the connection between the switch and controller is established.- Returns:
Booleanconnected, ornullif it is not present.
-
requireConnected
default @NonNull Boolean requireConnected()
Return connected, guaranteed to be non-null.When set to true, indicates the connection between the switch and controller is established.- Returns:
Booleanconnected, guaranteed to be non-null.- Throws:
NoSuchElementException- if connected is not present
-
-