Package solysombra.shared.domain.wwo

Examples of solysombra.shared.domain.wwo.Forecast


    // http://api.worldweatheronline.com/free/v1/weather.ashx?key=xhfhyuvuvegtfs2juvcstyjr&q=48.85,2.35&fx=no&format=json
    String uri = "http://api.worldweatheronline.com/free/v1/weather.ashx?key="
        + WWO_API_KEY + "&q=" + lat + "," + lon + "&fx=no&format=json";
    System.out.println(uri);
    ClientResource cr = new ClientResource(uri);
    Forecast res = cr.get(Forecast.class);
    return res;
  }
View Full Code Here

TOP

Related Classes of solysombra.shared.domain.wwo.Forecast

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.