c6d7e4bf5df098472f56365b69b71dd04e3bf87b
[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.ovsdb.hwvtepsouthbound.HwvtepConnectionInstance;
12 import org.opendaylight.ovsdb.lib.message.TableUpdates;
13 import org.opendaylight.ovsdb.lib.schema.DatabaseSchema;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.hwvtep.global.attributes.ConnectionInfo;
15 import org.opendaylight.yangtools.yang.binding.DataObject;
16
17 public abstract class AbstractTransactionCommand<T extends DataObject> implements TransactionCommand{
18
19     private TableUpdates updates;
20     private DatabaseSchema dbSchema;
21     private HwvtepConnectionInstance key;
22
23     public TableUpdates getUpdates() {
24         return updates;
25     }
26
27     public DatabaseSchema getDbSchema() {
28         return dbSchema;
29     }
30
31     public ConnectionInfo getConnectionInfo() {
32         return key.getMDConnectionInfo();
33     }
34
35     public HwvtepConnectionInstance getOvsdbConnectionInstance() {
36         return key;
37     }
38
39     public AbstractTransactionCommand(HwvtepConnectionInstance key,TableUpdates updates, DatabaseSchema dbSchema) {
40         this.updates = updates;
41         this.dbSchema = dbSchema;
42         this.key = key;
43     }
44
45 }