Interface InterfaceRefCommon
-
- 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 InterfaceRefCommon extends org.opendaylight.yangtools.yang.binding.DataObject
Reference leafrefs to interface / subinterfaceThis class represents the following YANG schema fragment defined in module openconfig-interfaces
grouping interface-ref-common { leaf interface { type leafref { path /oc-if:interfaces/oc-if:interface/oc-if:name; } } leaf subinterface { type leafref { path /oc-if:interfaces/oc-if:interface[oc-if:name=current()/../interface]/oc-if:subinterfaces/oc-if:subinterface/oc-if:index; } } }The schema path to identify an instance is openconfig-interfacesinterface-ref-common
-
-
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 StringgetInterface()Return interface, ornullif it is not present.org.opendaylight.yangtools.yang.common.Uint32getSubinterface()Return subinterface, ornullif it is not present.Class<? extends InterfaceRefCommon>implementedInterface()default @NonNull StringrequireInterface()Return interface, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint32requireSubinterface()Return subinterface, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends InterfaceRefCommon> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getInterface
String getInterface()
Return interface, ornullif it is not present.Reference to a base interface. If a reference to a subinterface is required, this leaf must be specified to indicate the base interface.- Returns:
Stringinterface, ornullif it is not present.
-
requireInterface
default @NonNull String requireInterface()
Return interface, guaranteed to be non-null.Reference to a base interface. If a reference to a subinterface is required, this leaf must be specified to indicate the base interface.- Returns:
Stringinterface, guaranteed to be non-null.- Throws:
NoSuchElementException- if interface is not present
-
getSubinterface
org.opendaylight.yangtools.yang.common.Uint32 getSubinterface()
Return subinterface, ornullif it is not present.Reference to a subinterface -- this requires the base interface to be specified using the interface leaf in this container. If only a reference to a base interface is requuired, this leaf should not be set.- Returns:
Uint32subinterface, ornullif it is not present.
-
requireSubinterface
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireSubinterface()
Return subinterface, guaranteed to be non-null.Reference to a subinterface -- this requires the base interface to be specified using the interface leaf in this container. If only a reference to a base interface is requuired, this leaf should not be set.- Returns:
Uint32subinterface, guaranteed to be non-null.- Throws:
NoSuchElementException- if subinterface is not present
-
-