org.heigit.ohsome.ohsomeapi.output.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ohsome-api Show documentation
Show all versions of ohsome-api Show documentation
A public Web-RESTful-API for "ohsome" OpenStreetMap history data.
The newest version!
package org.heigit.ohsome.ohsomeapi.output;
/**
* Interface for all Response classes.
*
* - {@link org.heigit.ohsome.ohsomeapi.output.DefaultAggregationResponse
* DefaultAggregationResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.groupby.GroupByResponse GroupByResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.ratio.RatioGroupByBoundaryResponse
* RatioGroupByBoundaryResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.ratio.RatioResponse RatioResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.ExtractionResponse DataResponse}
*
*/
public interface Response {
Attribution getAttribution();
String getApiVersion();
Metadata getMetadata();
}