package com.megatim.fdxcommons.tools.database.contrat; import java.util.List; /** * * @author Gabuntu */ public interface TypeFichierInsertMetaData { String tableName(); List rows() throws Exception; List columnNames() throws Exception; }