use of eu.bcvsolutions.idm.core.model.entity.IdmRoleCatalogue in project CzechIdMng by bcvsolutions.
the class DefaultIdmRoleCatalogueService method findAllParents.
@Override
@Transactional(readOnly = true)
public List<IdmRoleCatalogueDto> findAllParents(UUID catalogueId) {
IdmRoleCatalogue catalogue = this.getEntity(catalogueId);
List<IdmRoleCatalogue> roleCatalogues = repository.findAllParents(catalogue, null);
return toDtos(roleCatalogues, true);
}
Aggregations