Package org.codehaus.xfire.jaxb2

Source Code of org.codehaus.xfire.jaxb2.WeatherService

package org.codehaus.xfire.jaxb2;

import javax.jws.WebMethod;
import javax.jws.WebService;

import net.webservicex.GetWeatherByZipCode;
import net.webservicex.GetWeatherByZipCodeResponse;
import net.webservicex.WeatherForecasts;

/**
* @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
*/
@WebService
public class WeatherService
{
    @WebMethod
    public GetWeatherByZipCodeResponse GetWeatherByZipCode( GetWeatherByZipCode body )
    {
        GetWeatherByZipCodeResponse res = new GetWeatherByZipCodeResponse();
       
        WeatherForecasts weather = new WeatherForecasts();

        weather.setLatitude(1);
        weather.setLongitude(1);
        weather.setPlaceName("Grand Rapids, MI");
       
        res.setGetWeatherByZipCodeResult(weather);
       
        return res;
    }
}
TOP

Related Classes of org.codehaus.xfire.jaxb2.WeatherService

TOP
Copyright © 2018 www.massapi.com. 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.