Schema independent plugin insert operation for a traditional single Row & more advanc...
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / notation / ReferencedRow.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc. and others
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
9  */
10
11 package org.opendaylight.ovsdb.lib.notation;
12
13 import com.fasterxml.jackson.databind.JsonNode;
14
15 public class ReferencedRow {
16     String refTable;
17     JsonNode jsonNode;
18     public ReferencedRow(String refTable, JsonNode jsonNode) {
19         this.refTable = refTable;
20         this.jsonNode = jsonNode;
21     }
22
23     public JsonNode getJsonNode() {
24         return jsonNode;
25     }
26
27     public String getRefTable() {
28         return refTable;
29     }
30 }