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, PathAttributes
All Known Subinterfaces:
PduUpdateTlv, Update, Update

@Generated("mdsal-binding-generator") public interface UpdateMessage extends org.opendaylight.yangtools.binding.Grouping, PathAttributes
Update Message

This class represents the following YANG schema fragment defined in module bgp-message

 grouping update-message {
   uses path-attributes;
   list withdrawn-routes {
     uses ipv4-prefix-and-path-id;
   }
   list nlri {
     uses ipv4-prefix-and-path-id;
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable List<Nlri>
    Return nlri, or null if it is not present.
    Return withdrawnRoutes, or null if it is not present.
    default @NonNull List<Nlri>
    Return nlri, or an empty list if it is not present.
    default @NonNull List<WithdrawnRoutes>
    Return withdrawnRoutes, or an empty list if it is not present.

    Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract

    implementedInterface

    Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev200120.PathAttributes

    getAttributes, nonnullAttributes
  • Method Details

    • getWithdrawnRoutes

      @Nullable List<WithdrawnRoutes> getWithdrawnRoutes()
      Return withdrawnRoutes, or null if it is not present.
      Returns:
      List<WithdrawnRoutes> withdrawnRoutes, or null if it is not present.
    • nonnullWithdrawnRoutes

      default @NonNull List<WithdrawnRoutes> nonnullWithdrawnRoutes()
      Return withdrawnRoutes, or an empty list if it is not present.
      Returns:
      List<WithdrawnRoutes> withdrawnRoutes, or an empty list if it is not present.
    • getNlri

      @Nullable List<Nlri> getNlri()
      Return nlri, or null if it is not present.
      Returns:
      List<Nlri> nlri, or null if it is not present.
    • nonnullNlri

      default @NonNull List<Nlri> nonnullNlri()
      Return nlri, or an empty list if it is not present.
      Returns:
      List<Nlri> nlri, or an empty list if it is not present.