/**
   * Adds the export import configuration to the database. Also notifies the appropriate model
   * listeners.
   *
   * @param exportImportConfiguration the export import configuration
   * @return the export import configuration that was added
   */
  @Indexable(type = IndexableType.REINDEX)
  @Override
  public ExportImportConfiguration addExportImportConfiguration(
      ExportImportConfiguration exportImportConfiguration) {
    exportImportConfiguration.setNew(true);

    return exportImportConfigurationPersistence.update(exportImportConfiguration);
  }