blob: 2dfd61395a2f5a0686c6c5e3b2e532bf7c593b3a [file] [log] [blame]
package net.onrc.onos.core.topology;
/**
* Base class for Topology Objects.
*/
public 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;
}
}