Merge "rework sfc flows"
[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
16 public abstract class AbstractTransactionCommand implements TransactionCommand{
17
18     private TableUpdates updates;
19     private DatabaseSchema dbSchema;
20     private HwvtepConnectionInstance key;
21
22     public TableUpdates getUpdates() {
23         return updates;
24     }
25
26     public DatabaseSchema getDbSchema() {
27         return dbSchema;
28     }
29
30     public ConnectionInfo getConnectionInfo() {
31         return key.getMDConnectionInfo();
32     }
33
34     public HwvtepConnectionInstance getOvsdbConnectionInstance() {
35         return key;
36     }
37
38     protected AbstractTransactionCommand() {
39         // NO OP
40     }
41
42     public AbstractTransactionCommand(HwvtepConnectionInstance key,TableUpdates updates, DatabaseSchema dbSchema) {
43         this.updates = updates;
44         this.dbSchema = dbSchema;
45         this.key = key;
46     }
47
48 }