blob: b9ce0d3049212cf501ae8c8ce9ded0d76540d713 [file] [log] [blame]
Yuta HIGUCHI692e68e2014-07-09 18:08:02 -07001package net.onrc.onos.core.topology;
2
3// TODO give me a better name.
4/**
5 * Interface common to Topology element interfaces.
6 */
7public interface ITopologyElement {
8
9 // TODO The term Type is a bit confusing, may rename to something like layer
10 /**
11 * Returns the type of topology element.
12 *
13 * @return the type of the topology element
14 */
15 public String getType();
16}