More southbound migration for netvirt
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / impl / OvsdbConfigurationServiceImpl.java
1 package org.opendaylight.ovsdb.openstack.netvirt.impl;
2
3 import java.util.List;
4 import java.util.concurrent.ConcurrentMap;
5 import java.util.concurrent.ExecutionException;
6 import org.opendaylight.ovsdb.lib.notation.Row;
7 import org.opendaylight.ovsdb.lib.notation.UUID;
8 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
9 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
10 import org.opendaylight.ovsdb.openstack.netvirt.api.OvsdbConfigurationService;
11 import org.opendaylight.ovsdb.openstack.netvirt.api.OvsdbPluginException;
12 import org.opendaylight.ovsdb.openstack.netvirt.api.Status;
13 import org.opendaylight.ovsdb.openstack.netvirt.api.StatusWithUuid;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.OvsdbTerminationPointAugmentation;
15 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
16
17 public class OvsdbConfigurationServiceImpl implements OvsdbConfigurationService {
18     @Override
19     public StatusWithUuid insertRow(Node node, String tableName, String parentUuid, Row<GenericTableSchema> row) {
20         return null;
21     }
22
23     @Override
24     public Status updateRow(Node node, String tableName, String parentUuid, String rowUuid, Row row) {
25         return null;
26     }
27
28     @Override
29     public Status deleteRow(Node node, String tableName, String rowUuid) {
30         return null;
31     }
32
33     @Override
34     public Row getRow(Node node, String tableName, String uuid) {
35         return null;
36     }
37
38     @Override
39     public Row<GenericTableSchema> getRow(Node node, String databaseName, String tableName, UUID uuid) throws OvsdbPluginException {
40         return null;
41     }
42
43     @Override
44     public ConcurrentMap<String, Row> getRows(Node node, String tableName) {
45         return null;
46     }
47
48     @Override
49     public ConcurrentMap<UUID, Row<GenericTableSchema>> getRows(Node node, String databaseName, String tableName) throws OvsdbPluginException {
50         return null;
51     }
52
53     @Override
54     public ConcurrentMap<UUID, Row<GenericTableSchema>> getRows(Node node, String databaseName, String tableName, String fiqlQuery) throws OvsdbPluginException {
55         return null;
56     }
57
58     @Override
59     public List<String> getTables(Node node) {
60         return null;
61     }
62
63     @Override
64     public Boolean setOFController(Node node, String bridgeUUID) throws InterruptedException, ExecutionException {
65         return null;
66     }
67
68     @Override
69     public <T extends TypedBaseTable<?>> String getTableName(Node node, Class<T> typedClass) {
70         return null;
71     }
72
73     @Override
74     public <T extends TypedBaseTable<?>> T getTypedRow(Node node, Class<T> typedClass, Row row) {
75         return null;
76     }
77
78     @Override
79     public <T extends TypedBaseTable<?>> T createTypedRow(Node node, Class<T> typedClass) {
80         return null;
81     }
82
83     @Override
84     public ConcurrentMap<String, OvsdbTerminationPointAugmentation> getInterfaces(Node node) {
85         return null;
86     }
87 }