javastrava.api.v3.service.StravaService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javastrava-api Show documentation
Show all versions of javastrava-api Show documentation
Java implementation of the Strava API
package javastrava.api.v3.service;
/**
* Base interface for all other Strava services to inherit from (used by Token management)
* @author Dan Shannon
*
*/
public interface StravaService {
/**
*
* Clear any and all cached data entries
*
*
*
* Primarily used when revoking/deauthorising a token so that there are no entries remaining that are associated with the token that could mistakenly get
* returned
*
*/
public void clearCache();
}