All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.aipark.api.requestsResponse.getChargingStationsForTile.GetChargingStationsForTileResponse Maven / Gradle / Ivy

package de.aipark.api.requestsResponse.getChargingStationsForTile;

import de.aipark.api.chargingstation.ChargingStation;
import de.aipark.api.tile.Tile;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by torgen on 12.02.18.
 */
public class GetChargingStationsForTileResponse {
    private Tile tile;
    private List chargingStations;

    public GetChargingStationsForTileResponse() {
        chargingStations = new ArrayList();
    }

    public GetChargingStationsForTileResponse(Tile tile, List chargingStations) {
        this.tile = tile;
        this.chargingStations = chargingStations;
    }

    public Tile getTile() {
        return tile;
    }

    public void setTile(Tile tile) {
        this.tile = tile;
    }

    public List getChargingStations() {
        return chargingStations;
    }

    public void setChargingStations(List chargingStations) {
        this.chargingStations = chargingStations;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy