use of org.musicbrainz.android.api.data.Recording in project musicbrainz-android by jdamcd.
the class MusicBrainzWebClient method lookupRecording.
@Override
public Recording lookupRecording(String mbid) throws IOException {
HttpEntity entity = get(QueryBuilder.recordingLookup(mbid));
Recording recording = responseParser.parseRecording(entity.getContent());
entity.consumeContent();
return recording;
}
Aggregations