com.lajospolya.spotifyapiwrapper.response.CacheableResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
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;
}
}