*/
public List<Page> getProtectedTitles(
EnumWikipedia wiki,
List<Integer> namespaces, boolean limit) throws APIException {
ApiProtectedTitlesResult result = new ApiXmlProtectedTitlesResult(wiki, httpClient);
ApiProtectedTitlesRequest request = new ApiProtectedTitlesRequest(wiki, result);
return request.loadProtectedTitles(namespaces, limit);
}