package com.megatim.fdxcommons.model.referentiel.historique.pojo; import com.megatim.fdxcommons.model.integration.TableDefinition; import com.megatim.fdxcommons.model.referentiel.historique.ReferentielIntegrationHistorique; import java.util.List; /** * * @author ASUS */ public class TableDefinitionFiltered { private final List tablesToCreate; private final List refIntegrationHistorique; public TableDefinitionFiltered(List tablesToCreate, List refIntegrationHistorique) { this.tablesToCreate = tablesToCreate; this.refIntegrationHistorique = refIntegrationHistorique; } public List getTablesToCreate() { return tablesToCreate; } public List getRefIntegrationHistorique() { return refIntegrationHistorique; } }