72737475767778798081828384
* * @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);
191192193194195196197198
* * @param hostUrl * like http://www.yourOwnWiki.org/wiki/ */ protected final void setConnection(final URL hostUrl) { setConnection(new HttpActionClient(hostUrl)); }