package com.megatim.queryadhoc.contrat; import com.megatim.queryadhoc.model.QueryParam; import java.sql.PreparedStatement; import java.util.List; /** * * @author Gabuntu */ public interface PreparedStatementProcessor { void process(PreparedStatement statement, List queryParameters) throws Exception; int lastProcessedIndex(); }