This interface will be used by stored procedures to execute queries from within the database @author javatarz (Karun Japhet)
| 24 | * @author javatarz (Karun Japhet) |
| 25 | */ |
| 26 | @Deprecated //by Sanket Sarang |
| 27 | public interface QueryExecutor { |
| 28 | |
| 29 | public <T extends Object> List<T> run(final String appId, final String query, final Class<T> clazz); |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected