Added more ignorable files to .gitignore
[ovsdb.git] / northbound / ovsdb / 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.table.internal.Table;
15
16 public class OVSDBRows {
17     Map<String, Table<?>> rows;
18
19     public OVSDBRows(Map<String, Table<?>> rows) {
20         super();
21         this.rows = rows;
22     }
23
24     public Map<String, Table<?>> getRows() {
25         return rows;
26     }
27
28     public void setRows(Map<String, Table<?>> rows) {
29         this.rows = rows;
30     }
31 }