コード例 #1
0
 public List<FeatureSearchDto> find(
     String boundsWKT,
     List<Long> typeIds,
     List<Long> cityIds,
     List<Long> facebookUserIds,
     List<Long> routes,
     boolean reviewed,
     String query)
     throws InstanceNotFoundException {
   List<TIP> tips =
       tipDao.find(boundsWKT, typeIds, cityIds, facebookUserIds, routes, reviewed, query);
   return dtoService.ListTIP2ListFeatureSearchDto(tips);
 }