Examples of WebInterface


Examples of net.pterodactylus.sone.web.WebInterface

  @Test
  public void testBookmarkingExistingPost() throws URISyntaxException {
    /* create mocks. */
    Core core = mock(Core.class);
    WebInterface webInterface = mock(WebInterface.class);
    when(webInterface.getCore()).thenReturn(core);
    HTTPRequest httpRequest = new HTTPRequestImpl(new URI("/ajax/bookmark.ajax?post=abc"), "GET");
    FreenetRequest request = mock(FreenetRequest.class);
    when(request.getHttpRequest()).thenReturn(httpRequest);

    /* create JSON page. */
 
View Full Code Here

Examples of net.pterodactylus.sone.web.WebInterface

  @Test
  public void testBookmarkingMissingPost() throws URISyntaxException {
    /* create mocks. */
    Core core = mock(Core.class);
    WebInterface webInterface = mock(WebInterface.class);
    when(webInterface.getCore()).thenReturn(core);
    HTTPRequest httpRequest = new HTTPRequestImpl(new URI("/ajax/bookmark.ajax"), "GET");
    FreenetRequest request = mock(FreenetRequest.class);
    when(request.getHttpRequest()).thenReturn(httpRequest);

    /* create JSON page. */
 
View Full Code Here

Examples of plugins.Freetalk.ui.web.WebInterface

    mOldMessageListFetcher.start();
   
    // Create & start the UI
   
    if(logDEBUG) Logger.debug(this, "Creating Web interface...");
    mWebInterface = new WebInterface(this);

    if(logDEBUG) Logger.debug(this, "Creating FCP interface...");
    mFCPInterface = new FCPInterface(this);

    if (mConfig.getBoolean(Configuration.NNTP_SERVER_ENABLED)) {
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.