blob: cdf51bd6fc06293c8cf1879dfc4c07ad6ab8eabc [file] [log] [blame]
package net.onrc.onos.core.topology;
/**
* Base class for Topology Objects.
*/
public abstract class TopologyObject {
/**
* Topology instance this object belongs to.
*/
protected final Topology topology;
/**
* Constructor.
*
* @param topology Topology instance this object belongs to
*/
protected TopologyObject(Topology topology) {
this.topology = topology;
}
/**
* Returns the type of topology object.
*
* @return the type of the topology object
*/
public abstract String getType();
}