*/
public List<Page> getRandomPages(
EnumWikipedia wiki, int count,
boolean redirects) throws APIException {
ApiRandomPagesResult result = new ApiXmlRandomPagesResult(wiki, httpClient);
ApiRandomPagesRequest request = new ApiRandomPagesRequest(wiki, result);
return request.loadRandomList(count, redirects);
}