All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lajospolya.spotifyapiwrapper.response.CacheableResponse Maven / Gradle / Ivy

Go to download

This project wraps the Spotify public API in order to allow users to intuitively use it

There is a newer version: 3.0.RELEASE
Show newest version
package com.lajospolya.spotifyapiwrapper.response;

/**
 * @author Lajos Polya
 *
 * This class is the base class for all responses which may be cached.
 * If the reponse header has an etag then it will be autopopulated in this class.
 */
public class CacheableResponse
{
    private String etag;

    public String getEtag()
    {
        return etag;
    }

    public void setEtag(String etag)
    {
        this.etag = etag;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy