org.molgenis.data.index.meta.IndexActionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-index Show documentation
Show all versions of molgenis-data-index Show documentation
Data layer indexing framework.
package org.molgenis.data.index.meta;
import org.molgenis.data.AbstractSystemEntityFactory;
import org.molgenis.data.populate.EntityPopulator;
import org.springframework.stereotype.Component;
@Component
public class IndexActionFactory
extends AbstractSystemEntityFactory {
IndexActionFactory(IndexActionMetadata indexActionMetaData, EntityPopulator entityPopulator) {
super(IndexAction.class, indexActionMetaData, entityPopulator);
}
}