Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / Insertable.java
index ed0815e..135c079 100644 (file)
@@ -32,13 +32,14 @@ import java.sql.Connection;
  * @author Robert Eby\r
  * @version $Id: Insertable.java,v 1.2 2013/05/29 14:44:36 eby Exp $\r
  */\r
+\r
 @FunctionalInterface\r
 public interface Insertable {\r
     /**\r
      * Insert this object into the DB.\r
      *\r
-     * @param c the JDBC Connection to use\r
+     * @param conn the JDBC Connection to use\r
      * @return true if the INSERT succeeded, false otherwise\r
      */\r
-    boolean doInsert(Connection c);\r
+    boolean doInsert(Connection conn);\r
 }\r