Add JdbcMapperControl.java to make legacy JdbcControl classes easier to convert

This commit is contained in:
Travis Burtrum 2019-07-12 12:33:33 -04:00
parent c3278a0d29
commit e3d7bfb432
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package org.apache.beehive.controls.system.jdbc;
import com.moparisthebest.jdbc.codegen.JdbcMapper;
/**
* This is just a utility class to make it easier to convert your JdbcControls to JdbcMapper
*/
public interface JdbcMapperControl extends JdbcMapper, CloseableControl {
}