Interface OpenflowControllerConfig
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
@Generated("mdsal-binding-generator") public interface OpenflowControllerConfig extends org.opendaylight.yangtools.yang.binding.DataObject
Openflow controller configThis class represents the following YANG schema fragment defined in module openconfig-openflow
grouping openflow-controller-config { leaf name { type string; } }The schema path to identify an instance is openconfig-openflowopenflow-controller-config
-
-
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 StringgetName()Return name, ornullif it is not present.Class<? extends OpenflowControllerConfig>implementedInterface()default @NonNull StringrequireName()Return name, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends OpenflowControllerConfig> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getName
String getName()
Return name, ornullif it is not present.Name of this Openflow controller. All connections for the same controller need to have the same name.- Returns:
Stringname, ornullif it is not present.
-
requireName
default @NonNull String requireName()
Return name, guaranteed to be non-null.Name of this Openflow controller. All connections for the same controller need to have the same name.- Returns:
Stringname, guaranteed to be non-null.- Throws:
NoSuchElementException- if name is not present
-
-