Code ReOrganization and Re-Architecture changes
[ovsdb.git] / plugin / 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.List;\r
13 \r
14 public class MutateRequest {\r
15     public String op = "mutate";\r
16     public String table;\r
17     public List<Object> where;\r
18     public List<Object> mutations;\r
19 \r
20     public MutateRequest(String table, List<Object> where, List<Object> mutations){\r
21         this.table = table;\r
22         this.where = where;\r
23         this.mutations = mutations;\r
24     }\r
25 }\r