Interface InterfaceRefCommon
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
,org.opendaylight.yangtools.binding.BindingObject
,org.opendaylight.yangtools.binding.DataContainer
,org.opendaylight.yangtools.binding.Grouping
@Generated("mdsal-binding-generator")
public interface InterfaceRefCommon
extends org.opendaylight.yangtools.binding.Grouping
Reference leafrefs to interface / subinterface
This 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; } } }
-
Method Summary
Modifier and TypeMethodDescriptionReturn interface, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint32
Return subinterface, ornull
if it is not present.default @NonNull String
Return interface, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return subinterface, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getInterface
String getInterface()Return interface, ornull
if 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:
String
interface, ornull
if it is not present.
-
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:
String
interface, guaranteed to be non-null.- Throws:
NoSuchElementException
- if interface is not present
-
getSubinterface
org.opendaylight.yangtools.yang.common.Uint32 getSubinterface()Return subinterface, ornull
if 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:
Uint32
subinterface, ornull
if 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:
Uint32
subinterface, guaranteed to be non-null.- Throws:
NoSuchElementException
- if subinterface is not present
-