public static Visitable browse(String URL, final Store store, final ConnectionManager connectionManager) {
return match(URL, new Visitor<Visitable>(){
public Visitable track(URLtype type, String URI) {
Track track = store.getTrack(SpotifyURI.toHex(URI));
try {
new LoadTracks(store, track).send(connectionManager);
} catch (DespotifyException e) {
throw new RuntimeException(e);
}
return track;
}