X-Git-Url: https://gerrit.onap.org/r/gitweb?p=dmaap%2Fdatarouter.git;a=blobdiff_plain;f=datarouter-prov%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdatarouter%2Fprovisioning%2Fbeans%2FDeleteable.java;h=6910e0d7d727bfc73174c46afb10f5eb0c1c4db2;hp=a485312c0c1fb0f7a39891207c2f65e18f9fa2e2;hb=bc1df610cddfb558cf6bde90c269b4af59768648;hpb=a60d80ff7bfae8a152c950486d9a1877628e13a4 diff --git a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/beans/Deleteable.java b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/beans/Deleteable.java index a485312c..6910e0d7 100644 --- a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/beans/Deleteable.java +++ b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/beans/Deleteable.java @@ -25,17 +25,17 @@ package org.onap.dmaap.datarouter.provisioning.beans; import java.sql.Connection; - /** * An object that can be DELETE-ed from the database. * @author Robert Eby * @version $Id: Deleteable.java,v 1.2 2013/05/29 14:44:36 eby Exp $ */ + public interface Deleteable { /** * Delete this object in the DB. - * @param c the JDBC Connection to use + * @param conn the JDBC Connection to use * @return true if the DELETE succeeded, false otherwise */ - public boolean doDelete(Connection c); + public boolean doDelete(Connection conn); }