Examples of ApiXmlLogoutResult


Examples of org.wikipediacleaner.api.request.xml.ApiXmlLogoutResult

   * @see <a href="http://www.mediawiki.org/wiki/API:Logout">API:Logout</a>
   */
  public void logout(EnumWikipedia wiki) {
    if (!wiki.getConnection().isClean()) {
      wiki.getConnection().clean();
      ApiLogoutResult result = new ApiXmlLogoutResult(wiki, httpClient);
      ApiLogoutRequest request = new ApiLogoutRequest(wiki, result);
      try {
        request.logout();
      } catch (APIException e) {
        // Nothing to do
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.