
org.molgenis.data.importer.MetaDataParser 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.
package org.molgenis.data.importer;
import org.molgenis.data.RepositoryCollection;
import org.molgenis.framework.db.EntitiesValidationReport;
public interface MetaDataParser
{
/**
* Parses the metadata of the entities to import.
*
* @param source
* {@link RepositoryCollection} containing the data to parse
* @param defaultPackage
* , the package where the entities without a package should go
* @return {@link ParsedMetaData}
*/
public abstract ParsedMetaData parse(RepositoryCollection source, String defaultPackage);
public abstract EntitiesValidationReport validate(RepositoryCollection source);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy