blob: 306447e52b7bd324d3e8d3acd54050daa67e4c7c [file] [log] [blame]
Ayaka Koshibe86b3ac02014-08-15 13:45:23 -07001package net.onrc.onos.api.topology;
2
3import net.onrc.onos.api.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}