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

org.molgenis.oneclickimporter.service.EntityService Maven / Gradle / Ivy

Go to download

Plugin module for importing data with automatic metadata determination (not part of the importer framework).

There is a newer version: 8.4.5
Show newest version
package org.molgenis.oneclickimporter.service;

import org.molgenis.data.meta.model.EntityType;
import org.molgenis.oneclickimporter.model.DataCollection;

public interface EntityService {
  /**
   * Create one {@link EntityType} from a {@link DataCollection} Uses file name to find a package.
   * If the package does not exist, it is created
   *
   * @param dataCollection
   * @param packageName
   * @return a newly created {@link EntityType}
   */
  EntityType createEntityType(DataCollection dataCollection, String packageName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy