Package com.github.hakko.musiccabinet.ws.lastfm

Examples of com.github.hakko.musiccabinet.ws.lastfm.ArtistSimilarityClient


   
    // create a throttling service that allows calls at any rate
    ThrottleService throttleService = mock(ThrottleService.class);

    // create a client that allows all calls and returns Cher artist relations
    ArtistSimilarityClient asClient = new ArtistSimilarityClient();
    asClient.setWebserviceHistoryService(historyService);
    asClient.setHttpClient(httpClient);
    asClient.setThrottleService(throttleService);

    return asClient;
  }
View Full Code Here

TOP

Related Classes of com.github.hakko.musiccabinet.ws.lastfm.ArtistSimilarityClient

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.