b178072c203bce0347f696e81953be41f012230e
[ccsdk/sli.git] /
1 package org.onap.ccsdk.sli.core.slipluginutils.slitopologyutils.graph;
2
3 public interface Edge<V extends Vertex> {
4
5     /**
6      * Returns the edge source vertex.
7      *
8      * @return source vertex
9      */
10     V src();
11
12     /**
13      * Returns the edge destination vertex.
14      *
15      * @return destination vertex
16      */
17     V dst();
18
19 }