* @see <a href="http://www.mediawiki.org/wiki/API:Random">API:Random</a>
*/
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);
}