All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<IsisNodeAttributes>, org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<IsisNodeAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

@Generated("mdsal-binding-generator") public interface IsisNodeAttributes extends org.opendaylight.yangtools.yang.binding.ChildOf<IsisNodeAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<IsisNodeAttributes>

This class represents the following YANG schema fragment defined in module isis-topology

 container isis-node-attributes {
   container iso {
     leaf iso-system-id {
       type iso-system-id;
     }
     leaf iso-pseudonode-id {
       default 00;
       type iso-pseudonode-id;
     }
   }
   leaf-list net {
     max-elements 3;
     type iso-net-id;
   }
   leaf-list multi-topology-id {
     max-elements 128;
     type uint8 {
       range 0..127;
     }
   }
   choice router-type {
     case level-2 {
       leaf level-2 {
         type empty;
       }
     }
     case level-1 {
       leaf level-1 {
         type empty;
       }
     }
     case level-1-2 {
       leaf level-1-2 {
         type empty;
       }
     }
   }
   container ted {
     uses ted:ted-node-attributes;
   }
 }
 

To create instances of this class use IsisNodeAttributesBuilder.

See Also:
  • 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

      default Class<IsisNodeAttributes> 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
    • bindingHashCode

      static int bindingHashCode(@NonNull IsisNodeAttributes obj)
      Default implementation of Object.hashCode() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.
      Parameters:
      obj - Object for which to generate hashCode() result.
      Returns:
      Hash code value of data modeled by this interface.
      Throws:
      NullPointerException - if obj is null
    • bindingEquals

      static boolean bindingEquals(@NonNull IsisNodeAttributes thisObj, Object obj)
      Default implementation of Object.equals(Object) contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.
      Parameters:
      thisObj - Object acting as the receiver of equals invocation
      obj - Object acting as argument to equals invocation
      Returns:
      True if thisObj and obj are considered equal
      Throws:
      NullPointerException - if thisObj is null
    • bindingToString

      static String bindingToString(@NonNull IsisNodeAttributes obj)
      Default implementation of Object.toString() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.
      Parameters:
      obj - Object for which to generate toString() result.
      Returns:
      String value of data modeled by this interface.
      Throws:
      NullPointerException - if obj is null
    • getIso

      Iso getIso()
      Return iso, or null if it is not present.
      Returns:
      Iso iso, or null if it is not present.
    • nonnullIso

      @NonNull Iso nonnullIso()
      Return iso, or an empty instance if it is not present.
      Returns:
      Iso iso, or an empty instance if it is not present.
    • getNet

      @Nullable Set<IsoNetId> getNet()
      Return net, or null if it is not present.
      Returns:
      Set<IsoNetId> net, or null if it is not present.
    • requireNet

      default @NonNull Set<IsoNetId> requireNet()
      Return net, guaranteed to be non-null.
      Returns:
      Set<IsoNetId> net, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if net is not present
    • getMultiTopologyId

      @Nullable Set<org.opendaylight.yangtools.yang.common.Uint8> getMultiTopologyId()
      Return multiTopologyId, or null if it is not present.
           
               List of Multi Topology Identifier upto 128 (0-127). RFC 4915
           
       
      Returns:
      Set<Uint8> multiTopologyId, or null if it is not present.
    • requireMultiTopologyId

      default @NonNull Set<org.opendaylight.yangtools.yang.common.Uint8> requireMultiTopologyId()
      Return multiTopologyId, guaranteed to be non-null.
           
               List of Multi Topology Identifier upto 128 (0-127). RFC 4915
           
       
      Returns:
      Set<Uint8> multiTopologyId, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if multiTopologyId is not present
    • getRouterType

      RouterType getRouterType()
      Return routerType, or null if it is not present.
      Returns:
      RouterType routerType, or null if it is not present.
    • getTed

      Ted getTed()
      Return ted, or null if it is not present.
      Returns:
      Ted ted, or null if it is not present.
    • nonnullTed

      @NonNull Ted nonnullTed()
      Return ted, or an empty instance if it is not present.
      Returns:
      Ted ted, or an empty instance if it is not present.