use of org.molgenis.data.UnknownEntityTypeException in project molgenis by molgenis.
the class EntityTypeRepositoryDecorator method updateEntityTypeInBackend.
private void updateEntityTypeInBackend(EntityType updatedEntityType) {
EntityType existingEntityType = delegate().findOneById(updatedEntityType.getId());
if (existingEntityType == null) {
throw new UnknownEntityTypeException(updatedEntityType.getId());
}
if (!existingEntityType.isAbstract()) {
RepositoryCollection backend = dataService.getMeta().getBackend(existingEntityType);
backend.updateRepository(existingEntityType, updatedEntityType);
}
}
Aggregations