All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.molgenis.data.importer.MetaDataParser Maven / Gradle / Ivy

There is a newer version: 1.21.5
Show newest version
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