Northbound migration to use the new Schema independent Library based Plugin.
[ovsdb.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 public class OvsdbRows {
17     Map<String, Row> rows;
18
19     public OvsdbRows(Map<String, Row> rows) {
20         super();
21         this.rows = rows;
22     }
23
24     public Map<String, Row> getRows() {
25         return rows;
26     }
27
28     public void setRows(Map<String, Row> rows) {
29         this.rows = rows;
30     }
31 }