Interface PcepClientAttributes

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

    @Generated("mdsal-binding-generator")
    public interface PcepClientAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Data present in a node which is a PCEP client (PCC).

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

     grouping pcep-client-attributes {
       container path-computation-client {
         config false;
         leaf ip-address {
           type inet:ip-address-no-zone;
         }
         container stateful-tlv;
         leaf state-sync {
           type pcc-sync-state;
           when ../stateful-tlv;
         }
         list reported-lsp {
           leaf name {
             type string;
           }
           key name;
           list path {
             leaf lsp-id {
               type rsvp:lsp-id;
             }
             key lsp-id;
             uses pcep:path-definition;
           }
           uses lsp-metadata;
         }
       }
     }
     
    • 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

        Class<? extends PcepClientAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getPathComputationClient

        PathComputationClient getPathComputationClient()
        Return pathComputationClient, or null if it is not present.
             
                 PCC-related run-time information. This container is only present when the node
                 is connected through PCEP in a PCC role.
             
         
        Returns:
        PathComputationClient pathComputationClient, or null if it is not present.