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<TableDefinition> tablesToCreate;
|
private final List<ReferentielIntegrationHistorique> refIntegrationHistorique;
|
|
public TableDefinitionFiltered(List<TableDefinition> tablesToCreate, List<ReferentielIntegrationHistorique> refIntegrationHistorique) {
|
this.tablesToCreate = tablesToCreate;
|
this.refIntegrationHistorique = refIntegrationHistorique;
|
}
|
|
public List<TableDefinition> getTablesToCreate() {
|
return tablesToCreate;
|
}
|
|
public List<ReferentielIntegrationHistorique> getRefIntegrationHistorique() {
|
return refIntegrationHistorique;
|
}
|
|
}
|