Examples of ApiDeleteRequest


Examples of org.wikipediacleaner.api.request.ApiDeleteRequest

   * @see <a href="http://www.mediawiki.org/wiki/API:Delete">API:Delete</a>
   */
  public void deletePage(EnumWikipedia wiki, Page page, String reason)
      throws APIException {
    ApiDeleteResult result = new ApiXmlDeleteResult(wiki, httpClient);
    ApiDeleteRequest request = new ApiDeleteRequest(wiki, result);
    request.deletePage(page, reason);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.