Interface Edge

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

    public interface Edge
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Unidirectional Edge (link) representation for the network topology

    This class represents the following YANG schema fragment defined in module graph

     grouping edge {
       leaf edge-id {
         type uint64;
       }
       leaf local-vertex-id {
         type uint64;
       }
       leaf remote-vertex-id {
         type uint64;
       }
       leaf name {
         type string;
       }
       container edge-attributes {
         uses edge-attributes;
       }
     }
     
    The schema path to identify an instance is graph/edge
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getEdgeId()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 edgeId, or null if not present
      • getLocalVertexId

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getLocalVertexId()
        Vertex identifier where the Edge is attached
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 localVertexId, or null if not present
      • getRemoteVertexId

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getRemoteVertexId()
        Vertex identifier where the Edge is going to
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 remoteVertexId, or null if not present
      • getName

        @Nullable String getName()
        Edge name
        Returns:
        java.lang.String name, or null if not present
      • getEdgeAttributes

        @Nullable EdgeAttributes getEdgeAttributes()
        All attributes associated to the Edge
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.graph.rev191125.edge.EdgeAttributes edgeAttributes, or null if not present