mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
受け取ったクエリをコンソールに吐き出すようにした
This commit is contained in:
parent
82d0187a11
commit
3c66480f0f
|
@ -8,24 +8,31 @@ import one.nem.lacerta.data.LacertaSearch;
|
||||||
import one.nem.lacerta.model.ListItem;
|
import one.nem.lacerta.model.ListItem;
|
||||||
|
|
||||||
import one.nem.lacerta.data.LacertaLibrary;
|
import one.nem.lacerta.data.LacertaLibrary;
|
||||||
|
import one.nem.lacerta.utils.LacertaLogger;
|
||||||
|
|
||||||
public class LacertaSearchStubImpl implements LacertaSearch {
|
public class LacertaSearchStubImpl implements LacertaSearch {
|
||||||
|
|
||||||
private LacertaLibrary library;
|
private LacertaLibrary library;
|
||||||
|
private LacertaLogger logger;
|
||||||
|
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public LacertaSearchStubImpl(LacertaLibrary library) {
|
public LacertaSearchStubImpl(LacertaLibrary library, LacertaLogger logger) {
|
||||||
this.library = library;
|
this.library = library;
|
||||||
|
this.logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ArrayList<ListItem> autoSearch(String query, int limit) {
|
public ArrayList<ListItem> autoSearch(String query, int limit) {
|
||||||
|
logger.debug("SearchStub", "autoSearch");
|
||||||
|
logger.debug("SearchStub", "query: " + query);
|
||||||
return library.getLibraryPage(limit).getListItems();
|
return library.getLibraryPage(limit).getListItems();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ArrayList<ListItem> autoSearch(String query, int limit, int offset) {
|
public ArrayList<ListItem> autoSearch(String query, int limit, int offset) {
|
||||||
|
logger.debug("SearchStub", "autoSearch");
|
||||||
|
logger.debug("SearchStub", "query: " + query);
|
||||||
return library.getLibraryPage(limit, offset).getListItems();
|
return library.getLibraryPage(limit, offset).getListItems();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user