Interface MappingRecordMetadata

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

    @Generated("mdsal-binding-generator")
    public interface MappingRecordMetadata
    extends org.opendaylight.yangtools.yang.binding.DataObject
    This is a collection of fields which are not present in the actual mapping record defined in RFC 6830, but are used internally in OpenDaylight

    This class represents the following YANG schema fragment defined in module odl-lisp-proto

     grouping mapping-record-metadata {
       leaf xtr-id {
         type xtr-id;
       }
       leaf site-id {
         type site-id;
       }
       leaf source-rloc {
         type inet-bin:ip-address-binary;
       }
       leaf timestamp {
         type int64;
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

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

        XtrId getXtrId()
        Return xtrId, or null if it is not present.
             
                 128 bit xTR identifier.
             
         
        Returns:
        XtrId xtrId, or null if it is not present.
      • requireXtrId

        default @NonNull XtrId requireXtrId()
        Return xtrId, guaranteed to be non-null.
             
                 128 bit xTR identifier.
             
         
        Returns:
        XtrId xtrId, guaranteed to be non-null.
        Throws:
        java.util.NoSuchElementException - if xtrId is not present
      • getSiteId

        SiteId getSiteId()
        Return siteId, or null if it is not present.
             
                 64 bit site identifier.
             
         
        Returns:
        SiteId siteId, or null if it is not present.
      • requireSiteId

        default @NonNull SiteId requireSiteId()
        Return siteId, guaranteed to be non-null.
             
                 64 bit site identifier.
             
         
        Returns:
        SiteId siteId, guaranteed to be non-null.
        Throws:
        java.util.NoSuchElementException - if siteId is not present
      • getSourceRloc

        IpAddressBinary getSourceRloc()
        Return sourceRloc, or null if it is not present.
             
                 The Source IP address used for sending the enclosing control packet in RLOC
                 space.
             
         
        Returns:
        IpAddressBinary sourceRloc, or null if it is not present.
      • requireSourceRloc

        default @NonNull IpAddressBinary requireSourceRloc()
        Return sourceRloc, guaranteed to be non-null.
             
                 The Source IP address used for sending the enclosing control packet in RLOC
                 space.
             
         
        Returns:
        IpAddressBinary sourceRloc, guaranteed to be non-null.
        Throws:
        java.util.NoSuchElementException - if sourceRloc is not present
      • getTimestamp

        java.lang.Long getTimestamp()
        Return timestamp, or null if it is not present.
             
                 Milliseconds since January 1, 1970, 00:00:00 GMT
             
         
        Returns:
        Long timestamp, or null if it is not present.
      • requireTimestamp

        default @NonNull java.lang.Long requireTimestamp()
        Return timestamp, guaranteed to be non-null.
             
                 Milliseconds since January 1, 1970, 00:00:00 GMT
             
         
        Returns:
        Long timestamp, guaranteed to be non-null.
        Throws:
        java.util.NoSuchElementException - if timestamp is not present