Package net.sourceforge.jwbf.core.actions

Examples of net.sourceforge.jwbf.core.actions.HttpActionClient


  
   * @return a
   */
  public static HttpBot getInstance() {
   
    HttpActionClient cc = null;
      try {
        cc = new HttpActionClient(new URL("http://localhost/"));
      } catch (MalformedURLException e) {
        e.printStackTrace();
      }
 
      return new HttpBot(cc);
View Full Code Here


   *
   * @param hostUrl
   *            like http://www.yourOwnWiki.org/wiki/
   */
  protected final void setConnection(final URL hostUrl) {
    setConnection(new HttpActionClient(hostUrl));

  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.core.actions.HttpActionClient

Copyright © 2018 www.massapicom. 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.