de.aipark.api.requestsResponse.getChargingStationsForPosition.GetChargingStationsForPositionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aipark-api Show documentation
Show all versions of aipark-api Show documentation
AIPARK offers detailed parking information for more than 1.8 Mio parking areas in Germany
with nationwide coverage. Additionally, accurate occupancy predictions are derived using data from
a network of more than 5 million smartphones. Use the AIPARK API Explorer application to try out and
test the interface. Please send a request via email if you are a developer and require an API key.
We'll be in touch with you shortly. This application is provided via a demo backend environment.
Please note that API load tests do not reflect the performance of the productive system.
Mail: [email protected]
package de.aipark.api.requestsResponse.getChargingStationsForPosition;
import com.vividsolutions.jts.geom.Point;
import de.aipark.api.chargingstation.ChargingStation;
import java.util.ArrayList;
import java.util.List;
/**
* Created by torgen on 12.02.18.
*/
public class GetChargingStationsForPositionResponse {
private Point position;
private List chargingStations;
public GetChargingStationsForPositionResponse() {
chargingStations = new ArrayList();
}
public GetChargingStationsForPositionResponse(Point position, List chargingStations) {
this.position = position;
this.chargingStations = chargingStations;
}
public Point getPosition() {
return position;
}
public void setPosition(Point position) {
this.position = position;
}
public List getChargingStations() {
return chargingStations;
}
public void setChargingStations(List chargingStations) {
this.chargingStations = chargingStations;
}
@Override
public String toString() {
return "GetChargingStationsForPositionResponse{" +
"position=" + position +
", chargingStations=" + chargingStations +
'}';
}
}