Added more ignorable files to .gitignore
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / plugin / UpdateRequest.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.plugin;\r
11 \r
12 \r
13 import java.util.ArrayList;\r
14 import java.util.Map;\r
15 \r
16 public class UpdateRequest {\r
17     public String op;\r
18     public String table;\r
19     public ArrayList<Object> where;\r
20     public Map<String, Object> row;\r
21 \r
22     public UpdateRequest(String op, String table, ArrayList<Object> where, Map<String, Object> row){\r
23         this.op = op;\r
24         this.table = table;\r
25         this.where = where;\r
26         this.row = row;\r
27     }\r
28 }\r