blob: 1b211d632f3b0258a09e2bac1e133c2478f500ae [file] [log] [blame]
yoshi0451f282013-11-22 15:48:55 -08001/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package net.onrc.onos.graph;
6
7import com.thinkaurelius.titan.core.TitanGraph;
8import com.tinkerpop.blueprints.Vertex;
9import com.tinkerpop.frames.FramedGraph;
10import com.tinkerpop.frames.structures.FramedVertexIterable;
11import com.tinkerpop.gremlin.java.GremlinPipeline;
12import java.util.ArrayList;
yoshitomob292c622013-11-23 14:35:58 -080013import java.util.Iterator;
yoshi0451f282013-11-22 15:48:55 -080014import java.util.List;
15import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.*;
16import net.onrc.onos.ofcontroller.core.ISwitchStorage;
17import net.onrc.onos.ofcontroller.util.FlowEntryId;
18import net.onrc.onos.ofcontroller.util.FlowId;
19
20/**
21 *
22 * @author nickkaranatsios
23 */
24public class TitanDBOperation extends DBOperation {
yoshi0451f282013-11-22 15:48:55 -080025
yoshi0451f282013-11-22 15:48:55 -080026}