bdd501f03b13d6511d0cbb4304438fb621864a3a
[JavaForFun] /
1 package name.gumartinm.weather.information.parser;
2
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;
6
7 import java.io.IOException;
8
9
10 public interface IJPOSParser {
11
12     public Current retrieveCurrenFromJPOS(final String jsonData)
13             throws JsonParseException, IOException;
14
15     public Forecast retrieveForecastFromJPOS(final String jsonData)
16             throws JsonParseException, IOException;
17 }