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