Example #1
0
  @Override
  public List<Record> search(Context context, String title, String author, int year)
      throws HttpException, IOException {
    if (appId == null) {
      throw new RuntimeException("No CiNii Application ID is specified!");
    }

    return ciniiService.searchByTerm(title, author, year, getMaxResults(), getAppId());
  }