blob: 0c55314f7d65d07cc4e3c5a92a626d268da8dcfc [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.onlab.onos.net.topology;
2
3import org.onlab.onos.net.Description;
4
5import java.util.Collection;
6
7/**
8 * Describes attribute(s) of a network topology.
9 */
10public interface TopologyDescription extends Description {
11
12 /**
13 * A collection of Device, Link, and Host descriptors that describe
14 * the changes tha have occurred in the network topology.
15 *
16 * @return network element descriptions describing topology change
17 */
18 Collection<Description> details();
19
20}