Package org.bitcoinrt.client

Examples of org.bitcoinrt.client.StubMtgoxClient


    registration.addMapping("/tomcat");
    registration.setLoadOnStartup(1);

    Broadcaster broadcaster = servlet;

    AbstractMtgoxClient mtgoxClient = new StubMtgoxClient(broadcaster);
//    AbstractMtgoxClient mtgoxClient = new JettyMtgoxClient(broadcaster);
//    AbstractMtgoxClient mtgoxClient = new AsyncHttpClientMtgoxClient(broadcaster);

    servletContext.addListener(new MtGoxContextListener(mtgoxClient));
  }
View Full Code Here


  }

  @Bean
  public AbstractMtgoxClient mtgoxClient() {
//    return new AsyncHttpClientMtgoxClient();
    return new StubMtgoxClient();
  }
View Full Code Here

TOP

Related Classes of org.bitcoinrt.client.StubMtgoxClient

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.