* @throws APIException
* @see <a href="http://www.mediawiki.org/wiki/API:Purge">API:Purge</a>
*/
public void purgePageCache(EnumWikipedia wiki, Page page)
throws APIException {
ApiPurgeResult result = new ApiXmlPurgeResult(wiki, httpClient);
ApiPurgeRequest request = new ApiPurgeRequest(wiki, result);
request.purgePage(page);
}