Class EntityImportConfigMigrationResult
java.lang.Object
de.xima.fc.importer.migrate.EntityImportConfigMigrationResult
Result of a migration of
IEntityImportConfig instances, see EntityImportMigrator. 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
ConstructorsConstructorDescriptionEntityImportConfigMigrationResult(List<IEntityImportConfig<?>> newConfigs, List<IEntityImportConfig<?>> oldConfigs) Creates a new entity import config migration result with the given data. -
Method Summary
Modifier and TypeMethodDescriptionReturns the newly created import configs that should be added.Returns the old import configs that should be deleted.
-
Constructor Details
-
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 Details
-
getNewConfigs
Returns the newly created import configs that should be added.- Returns:
- The newly created import configs that should be added.
-
getOldConfigs
Returns the old import configs that should be deleted.- Returns:
- The old import configs that should be deleted.
-