org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.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.
package org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse;
/**
* Interface for all Response classes.
*
* - {@link org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.DefaultAggregationResponse
* DefaultAggregationResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.groupbyresponse.GroupByResponse
* GroupByResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.groupbyresponse.RatioGroupByBoundaryResponse
* RatioGroupByBoundaryResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.RatioResponse
* RatioResponse}
* - {@link org.heigit.ohsome.ohsomeapi.output.rawdataresponse.DataResponse
* DataResponse}
*
*/
public interface Response {
Attribution getAttribution();
String getApiVersion();
Metadata getMetadata();
}