blob: 306447e52b7bd324d3e8d3acd54050daa67e4c7c [file] [log] [blame]
package net.onrc.onos.api.topology;
import net.onrc.onos.api.Description;
import java.util.Collection;
/**
* Describes attribute(s) of a network topology.
*/
public interface TopologyDescription extends Description {
/**
* A collection of Device, Link, and Host descriptors that describe
* the changes tha have occurred in the network topology.
*
* @return network element descriptions describing topology change
*/
Collection<Description> details();
}