de.aipark.api.webservice.jsonConverter.aiparkapi.ScheduleDeserializer 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.webservice.jsonConverter.aiparkapi;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.KeyDeserializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import de.aipark.api.parkingarea.Schedule;
import java.io.IOException;
/**
* Created by torgen on 25.09.17.
*/
public class ScheduleDeserializer extends KeyDeserializer {
ObjectMapper objectMapper;
public ScheduleDeserializer() {
objectMapper = new ObjectMapper();
}
@Override
public Schedule deserializeKey(String key, DeserializationContext ctxt) throws IOException, JsonProcessingException {
try {
return objectMapper.readValue(key,Schedule.class);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}