Interface AsId

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<AsId>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<Bgp>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface AsId
    extends org.opendaylight.yangtools.yang.binding.ChildOf<Bgp>, org.opendaylight.yangtools.yang.binding.Augmentable<AsId>

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

     container as-id {
       leaf local-as {
         type uint32;
       }
       leaf router-id {
         type inet:ip-address;
       }
       leaf stalepath-time {
         type uint32;
         default 360;
       }
       leaf announce-fbit {
         type boolean;
       }
       leaf keepalive {
         type uint32;
         default 60;
       }
       leaf holdtime {
         type uint32;
         default 180;
       }
     }
     
    The schema path to identify an instance is ebgp/bgp/as-id

    To create instances of this class use AsIdBuilder.

    See Also:
    AsIdBuilder
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      @Nullable org.opendaylight.yangtools.yang.common.Uint32 getHoldtime()
      BGP hold time value
      @Nullable org.opendaylight.yangtools.yang.common.Uint32 getKeepalive()
      BGP keepalive timer value
      @Nullable org.opendaylight.yangtools.yang.common.Uint32 getLocalAs()  
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getRouterId()  
      @Nullable org.opendaylight.yangtools.yang.common.Uint32 getStalepathTime()  
      default java.lang.Class<AsId> implementedInterface()  
      @Nullable java.lang.Boolean isAnnounceFbit()  
      • Methods inherited from interface org.opendaylight.yangtools.yang.binding.Augmentable

        augmentation
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<AsId> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getLocalAs

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getLocalAs()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 localAs, or null if not present
      • getRouterId

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getRouterId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress routerId, or null if not present
      • getStalepathTime

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getStalepathTime()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 stalepathTime, or null if not present
      • isAnnounceFbit

        @Nullable java.lang.Boolean isAnnounceFbit()
        Returns:
        java.lang.Boolean announceFbit, or null if not present
      • getKeepalive

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getKeepalive()
        BGP keepalive timer value
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 keepalive, or null if not present
      • getHoldtime

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getHoldtime()
        BGP hold time value
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 holdtime, or null if not present