Merge "Initial pass at netvirt model"
[netvirt.git] / northbound / src / main / java / org / opendaylight / ovsdb / northbound / OvsdbRows.java
1 /*
2  * Copyright (c) 2013, 2015 Red Hat, Inc. 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.northbound;
10
11 import java.util.Map;
12
13 import org.opendaylight.ovsdb.lib.notation.Row;
14
15 @Deprecated
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 }