X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-xsql%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fxsql%2Fjdbc%2FJDBCCommand.java;h=649709ecf385bf893993370e4cf3d10545f72fca;hp=ba0626fdfe68c2335a9beeb4cb5b22637488ab86;hb=8decf2dbd1e08651d98c9292ba012b3a46005549;hpb=93c9708f8a9a225fa4d814ac98c15aea41fb26ac diff --git a/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/jdbc/JDBCCommand.java b/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/jdbc/JDBCCommand.java index ba0626fdfe..649709ecf3 100644 --- a/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/jdbc/JDBCCommand.java +++ b/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/jdbc/JDBCCommand.java @@ -18,7 +18,7 @@ public class JDBCCommand implements Serializable { public static final int TYPE_METADATA_REPLY = 7; private JDBCResultSet rs = null; - private Map record = null; + private Map record = null; private int rsID = -1; private Exception err = null; private XSQLBluePrint bluePrint = null; @@ -49,7 +49,7 @@ public class JDBCCommand implements Serializable { this.rsID = rs.getID(); } - public JDBCCommand(Map _record, int _rsID) { + public JDBCCommand(Map _record, int _rsID) { this.record = _record; this.rsID = _rsID; this.type = TYPE_QUERY_RECORD; @@ -68,7 +68,7 @@ public class JDBCCommand implements Serializable { return this.rs; } - public Map getRecord() { + public Map getRecord() { return this.record; }