blob: 9a26b31f5a9801b5c0254553944bb31481372e7b [file] [log] [blame]
Toshio Koide5f260652014-01-30 14:41:12 -08001package net.onrc.onos.ofcontroller.app;
2
3/**
4 * This code is valid for the architectural study purpose only.
5 * @author Toshio Koide (t-koide@onlab.us)
6 */
7public class NetworkGraphEntity {
8 protected NetworkGraph graph;
9
10 public NetworkGraphEntity(NetworkGraph graph) {
11 this.graph = graph;
12 }
13
14 public NetworkGraph getNetworkGraph() {
15 return graph;
16 }
17}