Interface LspIdentifiers

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<LspIdentifiers>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<LspIdentifiersTlv>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, Tlv

    public interface LspIdentifiers
    extends org.opendaylight.yangtools.yang.binding.ChildOf<LspIdentifiersTlv>, org.opendaylight.yangtools.yang.binding.Augmentable<LspIdentifiers>, Tlv

    This class represents the following YANG schema fragment defined in module odl-pcep-ietf-stateful07

     container lsp-identifiers {
       uses pcep:tlv;
       leaf lsp-id {
         type rsvp:lsp-id;
       }
       leaf tunnel-id {
         type rsvp:tunnel-id;
       }
       choice address-family {
         case ipv4-case {
           container ipv4 {
             leaf ipv4-tunnel-sender-address {
               type inet:ipv4-address-no-zone;
             }
             leaf ipv4-extended-tunnel-id {
               type rsvp:ipv4-extended-tunnel-id;
             }
             leaf ipv4-tunnel-endpoint-address {
               type inet:ipv4-address-no-zone;
             }
           }
         }
         case ipv6-case {
           container ipv6 {
             leaf ipv6-tunnel-sender-address {
               type inet:ipv6-address-no-zone;
             }
             leaf ipv6-extended-tunnel-id {
               type rsvp:ipv6-extended-tunnel-id;
             }
             leaf ipv6-tunnel-endpoint-address {
               type inet:ipv6-address-no-zone;
             }
           }
         }
       }
     }
     
    The schema path to identify an instance is odl-pcep-ietf-stateful07/lsp-identifiers-tlv/lsp-identifiers

    To create instances of this class use LspIdentifiersBuilder.

    See Also:
    LspIdentifiersBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable LspId getLspId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.LspId lspId, or null if not present
      • getTunnelId

        @Nullable TunnelId getTunnelId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.TunnelId tunnelId, or null if not present
      • getAddressFamily

        @Nullable AddressFamily getAddressFamily()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.ietf.stateful.rev181109.lsp.identifiers.tlv.lsp.identifiers.AddressFamily addressFamily, or null if not present