Project

General

Profile

bug #7525

Updated by Andreas Kohlbecker almost 6 years ago

The methods `findByTitle()` and `listByTitle()` in IdentifiableServiceBase offer `List<Criterion> criteria` as method parameter but this is almost not used at all since it is quite useless for most situations.  

 Having these methods also with Replacing the criteria by `List<Restriction<?>> restrictions` as parameter instead of `List<Criterion> criteria` will allow using virtually arbitrary search filters, when we have both variants. filters.      

Back