use of eu.bcvsolutions.idm.core.notification.api.dto.filter.IdmNotificationTemplateFilter in project CzechIdMng by bcvsolutions.
the class DefaultIdmNotificationTemplateService method findAllSystemTemplates.
@Override
public List<IdmNotificationTemplateDto> findAllSystemTemplates() {
IdmNotificationTemplateFilter filter = new IdmNotificationTemplateFilter();
filter.setUnmodifiable(Boolean.TRUE);
return this.find(filter, null).getContent().stream().collect(Collectors.toList());
}
Aggregations