Package de.xima.fc.importer.migrate
Class EntityImportConfigMigrationResult
- java.lang.Object
 - 
- de.xima.fc.importer.migrate.EntityImportConfigMigrationResult
 
 
- 
public final class EntityImportConfigMigrationResult extends Object
Result of a migration ofIEntityImportConfiginstances, seeEntityImportMigrator. Contains the newly created import configs that should be added and the old import configs that should be deleted.- Since:
 - 8.3.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Constructor Summary
Constructors Constructor Description EntityImportConfigMigrationResult(List<IEntityImportConfig<?>> newConfigs, List<IEntityImportConfig<?>> oldConfigs)Creates a new entity import config migration result with the given data. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<IEntityImportConfig<?>>getNewConfigs()Returns the newly created import configs that should be added.List<IEntityImportConfig<?>>getOldConfigs()Returns the old import configs that should be deleted. 
 - 
 
- 
- 
Constructor Detail
- 
EntityImportConfigMigrationResult
public EntityImportConfigMigrationResult(List<IEntityImportConfig<?>> newConfigs, List<IEntityImportConfig<?>> oldConfigs)
Creates a new entity import config migration result with the given data.- Parameters:
 newConfigs- The newly created import configs that should be added.oldConfigs- The old import configs that should be deleted.
 
 - 
 
- 
Method Detail
- 
getNewConfigs
public List<IEntityImportConfig<?>> getNewConfigs()
Returns the newly created import configs that should be added.- Returns:
 - The newly created import configs that should be added.
 
 
- 
getOldConfigs
public List<IEntityImportConfig<?>> getOldConfigs()
Returns the old import configs that should be deleted.- Returns:
 - The old import configs that should be deleted.
 
 
 - 
 
 -