Interface Segments

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Segments>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<SrNodeAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<SegmentsKey>

    public interface Segments
    extends org.opendaylight.yangtools.yang.binding.ChildOf<SrNodeAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<Segments>, org.opendaylight.yangtools.yang.binding.Identifiable<SegmentsKey>

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

     list segments {
       leaf segment-id {
         type segment-id;
       }
       key segment-id;
       choice segment-specification {
         case adjacency-case {
           container adjacency {
             leaf adjacency {
               type nt:link-ref;
             }
           }
         }
         case prefix-case {
           container prefix {
             leaf prefix {
               type inet:ip-prefix;
             }
             leaf node-sid {
               type boolean;
               default false;
             }
           }
         }
       }
     }
     
    The schema path to identify an instance is network-topology-sr/sr-node-attributes/segments

    To create instances of this class use SegmentsBuilder.

    See Also:
    SegmentsBuilder, SegmentsKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<Segments> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getSegmentId

        @Nullable SegmentId getSegmentId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.topology.sr.rev130819.SegmentId segmentId, or null if not present
      • getSegmentSpecification

        @Nullable SegmentSpecification getSegmentSpecification()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.topology.sr.rev130819.sr.node.attributes.segments.SegmentSpecification segmentSpecification, or null if not present
      • key

        SegmentsKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<SegmentsKey>