se.michaelthelin.spotify.requests.data.tracks.GetAudioFeaturesForTrackRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java client for Spotify's Web API
package se.michaelthelin.spotify.requests.data.tracks;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.apache.hc.core5.http.ParseException;
import se.michaelthelin.spotify.exceptions.SpotifyWebApiException;
import se.michaelthelin.spotify.model_objects.specification.AudioFeatures;
import se.michaelthelin.spotify.requests.data.AbstractDataRequest;
import java.io.IOException;
/**
* Get audio feature information for a single track identified by its unique Spotify ID.
*/
@JsonDeserialize(builder = GetAudioFeaturesForTrackRequest.Builder.class)
public class GetAudioFeaturesForTrackRequest extends AbstractDataRequest {
/**
* The private {@link GetAudioFeaturesForTrackRequest} constructor.
*
* @param builder A {@link GetAudioFeaturesForTrackRequest.Builder}.
*/
private GetAudioFeaturesForTrackRequest(final Builder builder) {
super(builder);
}
/**
* Get audio features for a track.
*
* @return An {@link AudioFeatures} object.
* @throws IOException In case of networking issues.
* @throws SpotifyWebApiException The Web API returned an error further specified in this exception's root cause.
*/
public AudioFeatures execute() throws
IOException,
SpotifyWebApiException,
ParseException {
return new AudioFeatures.JsonUtil().createModelObject(getJson());
}
/**
* Builder class for building a {@link GetAudioFeaturesForTrackRequest}.
*/
public static final class Builder extends AbstractDataRequest.Builder {
/**
* Create a new {@link GetAudioFeaturesForTrackRequest.Builder}.
*
* @param accessToken Required. A valid access token from the Spotify Accounts service.
*/
public Builder(final String accessToken) {
super(accessToken);
}
/**
* The track ID setter.
*
* @param id Required. The Spotify ID for the track.
* @return A {@link GetAudioFeaturesForTrackRequest.Builder}..
* @see Spotify: URIs & IDs
*/
public Builder id(final String id) {
assert (id != null);
assert (!id.equals(""));
return setPathParameter("id", id);
}
/**
* The request build method.
*
* @return A custom {@link GetAudioFeaturesForTrackRequest}.
*/
@Override
public GetAudioFeaturesForTrackRequest build() {
setPath("/v1/audio-features/{id}");
return new GetAudioFeaturesForTrackRequest(this);
}
@Override
protected Builder self() {
return this;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy