bug 6578 added mdsal read retry
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transactions / md / AbstractTransactionCommand.java
1 /*
2  * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
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
9 package org.opendaylight.ovsdb.hwvtepsouthbound.transactions.md;
10
11 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
12 import org.opendaylight.ovsdb.hwvtepsouthbound.HwvtepConnectionInstance;
13 import org.opendaylight.ovsdb.hwvtepsouthbound.HwvtepDeviceInfo;
14 import org.opendaylight.ovsdb.lib.message.TableUpdates;
15 import org.opendaylight.ovsdb.lib.schema.DatabaseSchema;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.hwvtep.global.attributes.ConnectionInfo;
17 import org.opendaylight.yangtools.yang.binding.DataObject;
18
19 public abstract class AbstractTransactionCommand<T extends DataObject> implements TransactionCommand {
20
21     private TableUpdates updates;
22     private DatabaseSchema dbSchema;
23     private HwvtepConnectionInstance key;
24
25     public TableUpdates getUpdates() {
26         return updates;
27     }
28
29     public DatabaseSchema getDbSchema() {
30         return dbSchema;
31     }
32
33     public ConnectionInfo getConnectionInfo() {
34         return key.getMDConnectionInfo();
35     }
36
37     public HwvtepConnectionInstance getOvsdbConnectionInstance() {
38         return key;
39     }
40
41     public AbstractTransactionCommand(HwvtepConnectionInstance key,TableUpdates updates, DatabaseSchema dbSchema) {
42         this.updates = updates;
43         this.dbSchema = dbSchema;
44         this.key = key;
45     }
46
47     public HwvtepDeviceInfo getDeviceInfo() {
48         return key.getDeviceInfo();
49     }
50 }