Project

General

Profile

bug #7467

Updated by Andreas Kohlbecker almost 6 years ago

implement a taxon name parts lookup method The methods in the service and dao and service layer with support for wildcard searches. 

 If a name part passed to witch the method contains the asterisk character ('*') it will be translated into '%' the related field is search with a LIKE clause. 

 Reuse functionality already implemeneted in `TaxonNameDaoHibernateImpl.searchNames(String dignature like   

 ~~~java 
 searchNames(String genusOrUninomial,String infraGenericEpithet, String specificEpithet, 	 String infraSpecificEpithet, Rank rank, Integer pageSize,Integer pageNumber, List<OrderHint> orderHints)` by allowing to replace the select part of the hql query. 




 orderHints, List<String> propertyPaths) 
 ~~~  

 should support using wildcards. 



Back