1 package name.gumartinm.weather.information.parser;
3 import com.fasterxml.jackson.core.JsonParseException;
4 import name.gumartinm.weather.information.model.currentweather.Current;
5 import name.gumartinm.weather.information.model.forecastweather.Forecast;
7 import java.io.IOException;
10 public interface IJPOSParser {
12 public Current retrieveCurrenFromJPOS(final String jsonData)
13 throws JsonParseException, IOException;
15 public Forecast retrieveForecastFromJPOS(final String jsonData)
16 throws JsonParseException, IOException;