
org.molgenis.data.importer.MetaDataChanges Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-import Show documentation
Show all versions of molgenis-data-import Show documentation
Entity importer framework and EMX importer.
The newest version!
package org.molgenis.data.importer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.molgenis.data.AttributeMetaData;
import org.molgenis.data.Entity;
import org.molgenis.framework.db.EntityImportReport;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
/**
* MetaDataChanges keeps track of which entities and attributes have been added by the {@link ImportWriter}. Used to
* manually rollback DDL changes.
*
* TODO this has fairly high overlap with {@link EntityImportReport}
*/
public class MetaDataChanges
{
private final List addedEntities = new ArrayList<>();
private final Map> addedAttributes = new LinkedHashMap<>();
private final List addedLanguages = new ArrayList<>();
public void addEntity(String entity)
{
addedEntities.add(entity);
}
public void addAttributes(String entityName, List attributes)
{
addedAttributes.put(entityName, ImmutableList. copyOf(attributes));
}
public void addLanguage(Entity language)
{
addedLanguages.add(language);
}
public ImmutableList getAddedEntities()
{
return ImmutableList.copyOf(addedEntities);
}
public ImmutableMap> getAddedAttributes()
{
return ImmutableMap.copyOf(addedAttributes);
}
public ImmutableList getAddedLanguages()
{
return ImmutableList.copyOf(addedLanguages);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy