de.aipark.api.requestsResponse.getChargingStationsForPosition.GetChargingStationsForPositionResponse Maven / Gradle / Ivy
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;
}
}