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

de.aipark.api.webservice.Webservice Maven / Gradle / Ivy

package de.aipark.api.webservice;

/**
 * Created by Marcel on 14.12.2015
 */
@SuppressWarnings("unused")
public class Webservice {
    public static final String GET_PARKING_AREAS_FOR_TILE = "getParkingAreasForTile";
    public static final String GET_OCCUPANCY_FOR_PARKING_AREAS = "getOccupancyForParkingAreas";
    public static final String GET_PARKING_AREAS_FOR_TILE_WITH_OCCUPANCY = "getParkingAreasForTileWithOccupancy";
    public static final String GET_PARKING_AREAS_FOR_TILE_WITH_OCCUPANCY_FOR_DEPARTURE = "getParkingAreasForTileWithOccupancyForDeparture";
    public static final String GET_PARKING_AREAS_FOR_POSITION = "getParkingAreasForPosition";
    public static final String GET_PARKING_AREAS_FOR_POSITION_WITH_OCCUPANCY = "getParkingAreasForPositionWithOccupancy";
    public static final String GET_PARKING_AREAS_FOR_POSITION_WITH_OCCUPANCY_FOR_DEPARTURE = "getParkingAreasForPositionWithOccupancyForDeparture";
    public static final String GET_OCCUPANCY_FOR_POSITION = "getOccupancyForPosition";
    public static final String GET_OPTIMAL_TRIP = "getOptimalTrip";
    public static final String GET_LIVE_PARK_EVENTS = "getLiveParkEvents";
    public static final String GET_LIVE_SPOTS_FOR_TILE = "getLiveSpotsForTile";
    public static final String GET_COSTS_FOR_PARKING_AREAS = "getCostsForParkingAreas";

    /**
     * will be removed in future release, use GET_COSTS_FOR_PARKING_AREAS
     */
    @Deprecated
    public static final String GET_COSTS_FOR_AREA = "getCostsForParkingAreas"; //TODO: remove

    public static final String GET_DATASOURCES_TO_PUBLISH_FOR_MERGED_ID = "getDatasourcesToPublishForParkingArea";

    public static final String GET_CHARGING_STATIONS_FOR_TILE = "getChargingStationsForTile";
    public static final String GET_CHARGING_STATIONS_FOR_POSITION = "getChargingStationsForPosition";

    public static final String ADD_ROUTE = "addRoute";
    public static final String ADD_LIVE_PARK_EVENT = "addLiveParkEvent";
    public static final String GET_CONFIG = "getAppConfig";

    public static final String PING = "PING";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy