Merge "Init bundle files for ovs-sfc."
[netvirt.git] / northbound / src / main / java / org / opendaylight / ovsdb / northbound / OvsdbRows.java
1 /*
2  * Copyright (C) 2013 Red Hat, Inc.
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 : Madhu Venugopal, Brent Salisbury
9  */
10 package org.opendaylight.ovsdb.northbound;
11
12 import java.util.Map;
13
14 import org.opendaylight.ovsdb.lib.notation.Row;
15
16 @Deprecated
17 public class OvsdbRows {
18     Map<String, Row> rows;
19
20     public OvsdbRows(Map<String, Row> rows) {
21         super();
22         this.rows = rows;
23     }
24
25     public Map<String, Row> getRows() {
26         return rows;
27     }
28
29     public void setRows(Map<String, Row> rows) {
30         this.rows = rows;
31     }
32 }