Added more ignorable files to .gitignore
[ovsdb.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / InsertRequest.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.Map;\r
13 import com.fasterxml.jackson.annotation.JsonProperty;\r
14 \r
15 public class InsertRequest {\r
16     public String op;\r
17     public String table;\r
18     @JsonProperty("uuid-name")\r
19     public Object uuidName;\r
20     public Map<String, Object> row;\r
21 \r
22     public InsertRequest(String op, String table, String uuidName, Map<String, Object> row){\r
23         this.op = op;\r
24         this.table = table;\r
25         this.uuidName = uuidName;\r
26         this.row = row;\r
27     }\r
28 }\r