Class EntityImportConfigMigrationResult

java.lang.Object
de.xima.fc.importer.migrate.EntityImportConfigMigrationResult

public final class EntityImportConfigMigrationResult extends Object
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 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

      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.