Interface BridgeBasedAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    BridgeBased, BridgeBased

    @Generated("mdsal-binding-generator")
    public interface BridgeBasedAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module v3po

     grouping bridge-based-attributes {
       leaf bridge-domain {
         type bridge-domain-ref;
       }
       leaf split-horizon-group {
         when ../bridge-domain;
         type uint8 {
           range 0..255;
         }
         default 0;
       }
       leaf bridged-virtual-interface {
         when ../bridge-domain;
         type boolean;
         default false;
       }
     }
     
    The schema path to identify an instance is v3po/bridge-based-attributes
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        java.lang.Class<? extends BridgeBasedAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getBridgeDomain

        java.lang.String getBridgeDomain()
        Return bridgeDomain, or null if it is not present.
             
                 Interfaces in a bridge-domain forward packets to other interfaces in the same
                 bridge-domain based on destination mac address.
             
         
        Returns:
        java.lang.String bridgeDomain, or null if it is not present.
      • getSplitHorizonGroup

        org.opendaylight.yangtools.yang.common.Uint8 getSplitHorizonGroup()
        Return splitHorizonGroup, or null if it is not present.
             
                 Interface's split-horizon group. Interfaces in the same bridge-domain and
                 split-horizon group can not forward packets between each other. 
             
         
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 splitHorizonGroup, or null if it is not present.
      • getBridgedVirtualInterface

        java.lang.Boolean getBridgedVirtualInterface()
        Return bridgedVirtualInterface, or null if it is not present.
             
                 Interface forward packets in the bridge-domain associated with the BVI.
             
         
        Returns:
        java.lang.Boolean bridgedVirtualInterface, or null if it is not present.
      • isBridgedVirtualInterface

        @Deprecated(forRemoval=true)
        default java.lang.Boolean isBridgedVirtualInterface()
        Deprecated, for removal: This API element is subject to removal in a future version.