Added more ignorable files to .gitignore
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / table / Tables.java
1 /*
2  * Copyright (C) 2013 Ebay Software Foundation
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Ashwin Raveendran
9  */
10 package org.opendaylight.ovsdb.lib.table;
11
12 import java.util.ArrayList;
13 import java.util.List;
14
15 public class Tables {
16     public static List<Table> tables = new ArrayList<Table>();
17
18     static {
19         tables.add(new Bridge());
20         tables.add(new Port());
21         tables.add(new Capability());
22         tables.add(new Interface());
23         tables.add(new Controller());
24         tables.add(new Manager());
25         tables.add(new Mirror());
26         tables.add(new NetFlow());
27         tables.add(new Open_vSwitch());
28         tables.add(new Qos());
29         tables.add(new Queue());
30         tables.add(new SFlow());
31         tables.add(new SSL());
32         tables.add(new Flow_Sample_Collector_Set());
33         tables.add(new Flow_Table());
34         tables.add(new IPFIX());
35     }
36
37     public static List<Table> getTables() {
38         return tables;
39     }
40 }