Added the missing Copyright headers to most of the java files.
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / plugin / MutateRequest.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 import java.util.ArrayList;\r
13 import java.util.List;\r
14 \r
15 public class MutateRequest {\r
16     public String op = "mutate";\r
17     public String table;\r
18     public List<Object> where;\r
19     public List<Object> mutations;\r
20 \r
21     public MutateRequest(String table, List<Object> where, List<Object> mutations){\r
22         this.table = table;\r
23         this.where = where;\r
24         this.mutations = mutations;\r
25     }\r
26 }\r