use of eu.bcvsolutions.idm.core.api.dto.IdmImportLogDto in project CzechIdMng by bcvsolutions.
the class ImportLogDeleteProcessor method process.
@Override
public EventResult<IdmImportLogDto> process(EntityEvent<IdmImportLogDto> event) {
IdmImportLogDto dto = event.getContent();
// Internal delete
service.deleteInternal(dto);
return new DefaultEventResult<>(event, this);
}
Aggregations