Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / Deleteable.java
index a485312..6910e0d 100644 (file)
 package org.onap.dmaap.datarouter.provisioning.beans;\r
 \r
 import java.sql.Connection;\r
-\r
 /**\r
  * An object that can be DELETE-ed from the database.\r
  * @author Robert Eby\r
  * @version $Id: Deleteable.java,v 1.2 2013/05/29 14:44:36 eby Exp $\r
  */\r
+\r
 public interface Deleteable {\r
     /**\r
      * Delete this object in the DB.\r
-     * @param c the JDBC Connection to use\r
+     * @param conn the JDBC Connection to use\r
      * @return true if the DELETE succeeded, false otherwise\r
      */\r
-    public boolean doDelete(Connection c);\r
+    public boolean doDelete(Connection conn);\r
 }\r