Examples of ApiXmlUsersResult


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

   * @throws APIException
   * @see <a href="http://www.mediawiki.org/wiki/API:Users">API:Users</a>
   */
  public User retrieveUser(
      EnumWikipedia wiki, String name) throws APIException {
    ApiUsersResult result = new ApiXmlUsersResult(wiki, httpClient);
    ApiUsersRequest request = new ApiUsersRequest(wiki, result);
    return request.retrieveUser(name);
  }
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.