001/*
002 * flattr4j - A Java library for Flattr
003 *
004 * Copyright (C) 2014 Richard "Shred" Körber
005 *   http://flattr4j.shredzone.org
006 *
007 * This program is free software: you can redistribute it and/or modify
008 * it under the terms of the GNU General Public License / GNU Lesser
009 * General Public License as published by the Free Software Foundation,
010 * either version 3 of the License, or (at your option) any later version.
011 *
012 * Licensed under the Apache License, Version 2.0 (the "License");
013 * you may not use this file except in compliance with the License.
014 *
015 * This program is distributed in the hope that it will be useful,
016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
018 */
019package org.shredzone.flattr4j.async.thing;
020
021import org.shredzone.flattr4j.FlattrService;
022import org.shredzone.flattr4j.async.FlattrCallable;
023import org.shredzone.flattr4j.async.PaginatedFlattrCallable;
024import org.shredzone.flattr4j.model.SearchQuery;
025import org.shredzone.flattr4j.model.SearchResult;
026
027/**
028 * {@link FlattrCallable} for invoking
029 * {@link FlattrService#searchThings(SearchQuery, Integer, Integer)}
030 *
031 * @author Iulius Gutberlet
032 * @author Richard "Shred" Körber
033 */
034public class SearchThingsMethod extends PaginatedFlattrCallable<SearchResult> {
035
036    private SearchQuery query;
037
038    public SearchThingsMethod() {
039        // default constructor
040    }
041
042    public SearchThingsMethod(SearchQuery query) {
043        this.query = query;
044    }
045
046    public SearchQuery getSearchQuery()         { return query; }
047    public void setSearchQuery(SearchQuery query) { this.query = query; }
048
049    @Override
050    public SearchResult call(FlattrService service, Integer count, Integer page)
051        throws Exception {
052        return service.searchThings(query, count, page);
053    }
054
055}