Package org.molgenis.api.metadata.v3
Class MetadataApiJobServiceImpl
- java.lang.Object
-
- org.molgenis.api.metadata.v3.MetadataApiJobServiceImpl
-
- All Implemented Interfaces:
MetadataApiJobService
@Service public class MetadataApiJobServiceImpl extends Object implements MetadataApiJobService
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MetadataUpsertJobExecutionscheduleCreate(EntityType entityType)Schedule an entity type create job.MetadataDeleteJobExecutionscheduleDelete(Collection<EntityType> entityTypes)Schedule an entity type delete job.MetadataDeleteJobExecutionscheduleDelete(EntityType entityType)Schedule an entity type delete job.MetadataUpsertJobExecutionscheduleUpdate(EntityType entityType)Schedule an entity type update job.
-
-
-
Method Detail
-
scheduleCreate
public MetadataUpsertJobExecution scheduleCreate(EntityType entityType)
Description copied from interface:MetadataApiJobServiceSchedule an entity type create job.- Specified by:
scheduleCreatein interfaceMetadataApiJobService- Parameters:
entityType- entity type- Returns:
- job execution
-
scheduleUpdate
public MetadataUpsertJobExecution scheduleUpdate(EntityType entityType)
Description copied from interface:MetadataApiJobServiceSchedule an entity type update job.- Specified by:
scheduleUpdatein interfaceMetadataApiJobService- Parameters:
entityType- updated entity type- Returns:
- job execution
-
scheduleDelete
public MetadataDeleteJobExecution scheduleDelete(EntityType entityType)
Description copied from interface:MetadataApiJobServiceSchedule an entity type delete job.- Specified by:
scheduleDeletein interfaceMetadataApiJobService- Parameters:
entityType- entity type to delete- Returns:
- job execution
-
scheduleDelete
public MetadataDeleteJobExecution scheduleDelete(Collection<EntityType> entityTypes)
Description copied from interface:MetadataApiJobServiceSchedule an entity type delete job.- Specified by:
scheduleDeletein interfaceMetadataApiJobService- Parameters:
entityTypes- entity types to delete- Returns:
- job execution
-
-