All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
All Known Subinterfaces:
AddBundleMessagesInput, BundleAddMessageGrouping, BundleControlGrouping, ControlBundleInput, OnfAddMessageGroupingData, OnfControlGroupingData, SalAddMessageData, SalControlData

@Generated("mdsal-binding-generator") public interface BundleCommonGrouping extends org.opendaylight.yangtools.yang.binding.DataObject
Common fields of bundle messages.

This class represents the following YANG schema fragment defined in module onf-extensions

 grouping bundle-common-grouping {
   leaf bundle-id {
     type bundle-id;
   }
   leaf flags {
     type bundle-flags;
   }
   list bundle-property {
     uses bundle-property-grouping;
   }
 }
 
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      Class<? extends BundleCommonGrouping> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
    • getBundleId

      BundleId getBundleId()
      Return bundleId, or null if it is not present.
      Returns:
      BundleId bundleId, or null if it is not present.
    • requireBundleId

      default @NonNull BundleId requireBundleId()
      Return bundleId, guaranteed to be non-null.
      Returns:
      BundleId bundleId, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if bundleId is not present
    • getFlags

      BundleFlags getFlags()
      Return flags, or null if it is not present.
      Returns:
      BundleFlags flags, or null if it is not present.
    • requireFlags

      default @NonNull BundleFlags requireFlags()
      Return flags, guaranteed to be non-null.
      Returns:
      BundleFlags flags, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if flags is not present
    • getBundleProperty

      @Nullable List<BundleProperty> getBundleProperty()
      Return bundleProperty, or null if it is not present.
      Returns:
      List<BundleProperty> bundleProperty, or null if it is not present.
    • nonnullBundleProperty

      default @NonNull List<BundleProperty> nonnullBundleProperty()
      Return bundleProperty, or an empty list if it is not present.
      Returns:
      List<BundleProperty> bundleProperty, or an empty list if it is not present.