Created FlowQueueTable basic structure.
diff --git a/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowQueueTable.java b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowQueueTable.java
new file mode 100644
index 0000000..d3a6318
--- /dev/null
+++ b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowQueueTable.java
@@ -0,0 +1,210 @@
+package net.onrc.onos.ofcontroller.flowmanager;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Queue;
+import java.util.Set;
+
+import net.floodlightcontroller.core.IOFSwitch;
+
+import org.openflow.protocol.OFMessage;
+
+/**
+ * Represents table of message queues attached to each switch. 
+ * Each message should be ADD/DELETE of flow.
+ * (MODIFY of flow might be handled, but future work)
+ * @author Naoki Shiota
+ *
+ */
+public class FlowQueueTable {
+	
+	public enum QueueState {
+		SYNCHRONIZED,
+		SYNCHRONIZING,
+		DELETED;		// not in work and to be deleted
+	}
+	
+	private class QueueInfo {
+		QueueState state;
+		
+		// Max rate of sending message (bytes/sec). 0 implies no limitation.
+		long max_rate = 0;
+		
+		// Is sending message suspended or not.
+		boolean suspended = false;
+	}
+	
+	private Map< IOFSwitch, Queue<OFMessage> > queues
+		= new HashMap< IOFSwitch, Queue<OFMessage> >();
+	private Map<IOFSwitch, QueueInfo> queue_info
+		= new HashMap<IOFSwitch, QueueInfo>();
+	
+	public FlowQueueTable() {
+		// TODO Auto-generated constructor stub
+	}
+
+	/**
+	 * Add flow queue for given switch.
+	 * Note queue should be given by caller so that caller can select data
+	 * structure suitable for its processing.
+	 * @param sw
+	 * @param queue
+	 */
+	public void addSwitchQueue(IOFSwitch sw, Queue<OFMessage> queue) {
+		QueueInfo info = new QueueInfo();
+		
+		if (queues.containsKey(sw)) {
+			return;
+		}
+		
+		queues.put(sw, queue);
+		queue_info.put(sw, info);
+	}
+	
+	/**
+	 * Delete flow queue for given switch.
+	 * @param sw
+	 */
+	public void deleteSwitchQueue(IOFSwitch sw) {
+		if (! queues.containsKey(sw)) {
+			return;
+		}
+		
+		queues.remove(sw);
+		queue_info.remove(sw);
+	}
+
+	/**
+	 * Get flow queue for given switch.
+	 * @param sw
+	 * @return
+	 */
+	public Queue<OFMessage> getQueue(IOFSwitch sw) {
+		return queues.get(sw);
+	}
+	
+	public Set<IOFSwitch> getSwitches() {
+		return queues.keySet();
+	}
+
+	/**
+	 * Get state of flow queue for given switch.
+	 * @param sw
+	 */
+	public QueueState getQueueState(IOFSwitch sw) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			return null;
+		}
+		
+		return info.state;
+	}
+	
+	/**
+	 * Set state of flow queue for given switch.
+	 * @param sw
+	 * @param state
+	 */
+	public void setQueueState(IOFSwitch sw, QueueState state) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			return;
+		}
+		
+		info.state = state;
+	}
+
+	/**
+	 * Get maximum rate for given switch.
+	 * @param sw
+	 */
+	public long getQueueRate(IOFSwitch sw) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			return 0;
+		}
+		
+		return info.max_rate;
+	}
+
+	/**
+	 * Set maximum rate for given switch.
+	 * @param sw
+	 * @param rate
+	 */
+	public void setQueueRate(IOFSwitch sw, long rate) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			return;
+		}
+		
+		info.max_rate = rate;
+	}
+	
+	/**
+	 * Suspend sending message of a queue for given switch.
+	 * @param sw
+	 */
+	public void suspendQueue(IOFSwitch sw) {
+		setQueueSuspended(sw, true);
+	}
+	
+	/**
+	 * Resume sending message of a queue for given switch.
+	 * @param sw
+	 */
+	public void resumeQueue(IOFSwitch sw) {
+		setQueueSuspended(sw, false);
+	}
+
+	/**
+	 * Check if queue is suspended or not.
+	 * @param sw
+	 * @return
+	 */
+	public boolean isQueueSusupended(IOFSwitch sw) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			// TODO error handling
+			return true;
+		}
+
+		return info.suspended;
+	}
+	
+	private void setQueueSuspended(IOFSwitch sw, boolean suspended) {
+		QueueInfo info = queue_info.get(sw);
+		if (info == null) {
+			return;
+		}
+		
+		info.suspended =suspended;
+	}
+	
+	/**
+	 * Get a lock for queue for given switch.
+	 * If locked already, wait for unlock.
+	 * @param sw
+	 */
+	public void lockQueue(IOFSwitch sw) {
+		// TODO not yet implement
+	}
+
+	/**
+	 * Get a lock for queue for given switch.
+	 * If locked already, return false at once.
+	 * @param sw
+	 * @return
+	 */
+	public boolean lockQueueIfAvailable(IOFSwitch sw) {
+		// TODO not yet implement
+		return false;
+	}
+
+	/** Release a lock for queue for given switch.
+	 * @param sw
+	 */
+	public void unlockQueue(IOFSwitch sw) {
+		// TODO not yet implement
+	}
+}