Initial Netty + JSON Deserializer + all the enhancements happening in many private...
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / lib / table / internal / Tables.java
1 package org.opendaylight.ovsdb.lib.table.internal;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 import org.opendaylight.ovsdb.lib.table.*;
7
8 public class Tables {
9     public static List<Table> tables = new ArrayList<Table>();
10     static {
11         tables.add(new Bridge());
12         tables.add(new Port());
13         tables.add(new Capability());
14         tables.add(new Interface());
15         tables.add(new Controller());
16         tables.add(new Manager());
17         tables.add(new Mirror());
18         tables.add(new NetFlow());
19         tables.add(new Open_vSwitch());
20         tables.add(new Qos());
21         tables.add(new Queue());
22         tables.add(new SFlow());
23         tables.add(new SSL());
24     }
25     public static List<Table> getTables() {
26         return tables;
27     }
28 }