/**
  * @deprecated Use to get list of relate author, API deprecated and replace with extended API on
  *     author search
  * @param name
  * @param response
  * @return
  * @throws InterruptedException
  * @throws IOException
  * @throws ExecutionException
  * @throws org.apache.http.ParseException
  * @throws OAuthSystemException
  * @throws OAuthProblemException
  */
 @RequestMapping(value = "/autocomplete", method = RequestMethod.GET)
 @Transactional
 public @ResponseBody Map<String, Object> getAuthorAutocomplete(
     @RequestParam(value = "name", required = false) final String name,
     final HttpServletResponse response)
     throws InterruptedException, IOException, ExecutionException, org.apache.http.ParseException,
         OAuthSystemException, OAuthProblemException {
   return researcherFeature.getResearcherApi().getAuthorAutoCompleteFromNetworkAndDb(name);
 }