Interface L2gatewayAttributes
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
L2gateway
public interface L2gatewayAttributes extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module neutron-l2gateways
grouping l2gateway-attributes { list devices { key uuid; leaf uuid { type yang:uuid; } leaf device-name { type string; } list interfaces { key interface-name; leaf interface-name { type string; } leaf-list segmentation-ids { type int32; } } } }The schema path to identify an instance is neutron-l2gateways/l2gateway-attributes
-
-
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 @Nullable List<Devices>getDevices()Description of devices.Class<? extends L2gatewayAttributes>implementedInterface()default @NonNull List<Devices>nonnullDevices()
-
-
-
Method Detail
-
implementedInterface
Class<? extends L2gatewayAttributes> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getDevices
@Nullable List<Devices> getDevices()
Description of devices.- Returns:
java.util.Listdevices, ornullif not present
-
-